| OLD | NEW |
| (Empty) | |
| 1 // This file is an example of a working manifest file for the earth_c |
| 2 // example. Note that the library names, including the eight-digit version |
| 3 // number, must match the libraries available to the application. |
| 4 // |
| 5 // At the time this file was committed, the earth example was broken due to |
| 6 // this issue: http://code.google.com/p/nativeclient/issues/detail?id=2202 |
| 7 // As a work around, specify 'usesysconf="false"' in the HTML file. |
| 8 { |
| 9 "program": { |
| 10 "x86-32": {"url": "lib/runnable-ld.so"}, |
| 11 "x86-64": {"url": "lib/runnable-ld.so"}, |
| 12 "arm": {"url": "lib/runnable-ld.so"} |
| 13 }, |
| 14 "files": { |
| 15 "lib/runnable-ld.so" : { "x86-32" : { "url": "lib/runnable-ld.so"}}, |
| 16 "lib/libc.so.b0c62cad" : { "x86-32" : { "url": "lib/libc.so.b0c62cad"}}, |
| 17 "lib/libm.so.b0c62cad" : { "x86-32" : { "url": "lib/libm.so.b0c62cad"}}, |
| 18 "lib/libgcc_s.so.1" : { "x86-32" : { "url": "lib/libgcc_s.so.1"}}, |
| 19 "lib/libpthread.so.b0c62cad" : |
| 20 { "x86-32" : { "url": "lib/libpthread.so.b0c62cad"}}, |
| 21 "lib/libstdc++.so.6" : { "x86-32" : { "url": "lib/libstdc++.so.6"}}, |
| 22 "lib/libplatform.so" : { "x86-32" : { "url": "lib/libplatform.so"}}, |
| 23 "lib/libgio.so" : { "x86-32" : { "url": "lib/libgio.so"}}, |
| 24 "main.nexe": { |
| 25 "x86-32": {"url": "earth_c_x86-32.nexe"}, |
| 26 "x86-64": {"url": "earth_c_x86-64.nexe"}, |
| 27 "arm": {"url": "earth_c_arm.nexe"} |
| 28 } |
| 29 } |
| 30 } |
| OLD | NEW |