Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 { | |
| 2 | |
| 3 'includes': [ | |
| 4 '../chrome/version.gypi', | |
|
gab
2013/11/05 16:43:20
This version.gypi stuff is pretty cool :)!
| |
| 5 ], | |
| 6 'targets': [ | |
| 7 { | |
| 8 'target_name': 'chrome_elf', | |
| 9 'type': 'shared_library', | |
| 10 'include_dirs': [ | |
| 11 '..', | |
|
gab
2013/11/05 16:43:20
nit: overly indented?
Cait (Slow)
2013/11/06 00:30:15
Done.
| |
| 12 ], | |
| 13 'sources': [ | |
| 14 'chrome_elf.def', | |
| 15 'chrome_elf_main.cc', | |
| 16 'chrome_elf_main.h', | |
| 17 ], | |
| 18 'actions' : [ | |
| 19 { | |
| 20 'action_name': 'chrome_exe_manifest', | |
| 21 'variables': { | |
| 22 'template_input_path': | |
| 23 'chrome_exe_manifest.template', | |
| 24 }, | |
| 25 'inputs': [ | |
| 26 '<(template_input_path)', | |
| 27 '<(version_path)', | |
| 28 ], | |
| 29 'outputs': [ | |
| 30 '<(SHARED_INTERMEDIATE_DIR)/chrome_elf/version_assembly.manifest', | |
| 31 ], | |
| 32 'action': [ | |
| 33 'python', '<(version_py_path)', | |
| 34 '-f', '<(version_path)', | |
| 35 '<(template_input_path)', | |
| 36 '<@(_outputs)', | |
| 37 ], | |
| 38 'message': 'Generating additional manifest files' | |
|
gab
2013/11/05 16:43:20
Seems you could do something like 'Generating <@(_
| |
| 39 }, | |
| 40 ], | |
| 41 }, | |
| 42 ], | |
| 43 } | |
| OLD | NEW |