PNaCl is going to be deprecated soon, and it's supposed to be replaced by wasm,js, even though is going to be supported on Chrome OS apps and extensions for some time.
asm.js/wasm.js is supported on Google extensions, but it's not apparently going to work with Chrome apps, since they have a more restrictive Content-Security-Policy (which you can't edit in the manifest as it can be done with extensions).
On the other hand, Chrome apps are also deprecated (on Chrome/Chromium) and will continue to work only on Chrome OS.
My question: what's one supposed to use for developing a Chrome OS app?
Is wasm/asm.js a valid option (or will it be)? From what I tried I was not able to make the asm.js part of a ported web application work as a Chrome app because of the CSP issue.
As an alternative to wasm/ams.js I see I could use PNaCl, but since it is deprecated for Chrome I wonder how much time it will be supported on Chrome Apps.
TIA, best regards.