Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
README | D | 03-May-2024 | 898 | 24 | 16 | |
example.dsc | D | 03-May-2024 | 479 | 22 | 21 | |
example.js | D | 03-May-2024 | 837 | 25 | 8 | |
hello_tutorial.cc | D | 03-May-2024 | 1.5 KiB | 57 | 35 | |
index.html | D | 03-May-2024 | 1.4 KiB | 43 | 16 |
README
1====================================== 2C++ Tutorial: Getting Started (Part 2) 3====================================== 4 5Please see the online documentation here: 6 7 https://developers.google.com/native-client/devguide/tutorial 8 9 10Part 2 of the tutorial is the same as part 1, except: 11 12* The SDK build system is now used. This simplifies supporting multiple NaCl 13 toolchains (e.g. PNaCl, newlib, GLibC). See $NACL_SDK_ROOT/README.Makefiles 14 for more information about the SDK Build system. 15 16* The example loads common.js, a JavaScript file that has common code used in 17 all of the SDK examples. 18 19* index.html has been simplified, and all JavaScript code has been moved to 20 separate .js files. This makes the example Content Security Policy 21 (CSP)-compliant. See 22 http://developer.chrome.com/apps/contentSecurityPolicy.html for more details. 23 CSP-compliance is required for Chrome Packaged apps. 24