OLD | NEW |
1 { | 1 { |
2 'TOOLS': ['newlib', 'glibc', 'pnacl', 'win', 'linux'], | |
3 # Don't copy the packaged app files: manifest.json, etc. | 2 # Don't copy the packaged app files: manifest.json, etc. |
4 'NO_PACKAGE_FILES': True, | 3 'NO_PACKAGE_FILES': True, |
5 'TARGETS': [ | 4 'TARGETS': [ |
6 { | 5 { |
7 'NAME': 'part2', | 6 'NAME': 'part2', |
8 'TYPE': 'main', | 7 'TYPE': 'main', |
9 'SOURCES': ['hello_tutorial.cc'], | 8 'SOURCES': ['hello_tutorial.cc'], |
10 'LIBS': ['ppapi_cpp', 'ppapi', 'pthread'], | 9 'LIBS': ['ppapi_cpp', 'ppapi', 'pthread'], |
11 } | 10 } |
12 ], | 11 ], |
13 'DATA': [ | 12 'DATA': [ |
14 'example.js', | 13 'example.js', |
15 'README', | 14 'README', |
16 ], | 15 ], |
17 'DEST': 'getting_started', | 16 'DEST': 'getting_started', |
18 'NAME': 'part2', | 17 'NAME': 'part2', |
19 'TITLE': 'Getting Started: Part 2', | 18 'TITLE': 'Getting Started: Part 2', |
20 'GROUP': 'Getting Started', | 19 'GROUP': 'Getting Started', |
21 } | 20 } |
OLD | NEW |