Chromium Code Reviews| Index: chrome_elf/chrome_elf.gypi |
| diff --git a/chrome_elf/chrome_elf.gypi b/chrome_elf/chrome_elf.gypi |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..c8738cf0eb2454115abae793d1296d08096b6eb6 |
| --- /dev/null |
| +++ b/chrome_elf/chrome_elf.gypi |
| @@ -0,0 +1,43 @@ |
| +{ |
| + |
| + 'includes': [ |
| + '../chrome/version.gypi', |
|
gab
2013/11/05 16:43:20
This version.gypi stuff is pretty cool :)!
|
| + ], |
| + 'targets': [ |
| + { |
| + 'target_name': 'chrome_elf', |
| + 'type': 'shared_library', |
| + 'include_dirs': [ |
| + '..', |
|
gab
2013/11/05 16:43:20
nit: overly indented?
Cait (Slow)
2013/11/06 00:30:15
Done.
|
| + ], |
| + 'sources': [ |
| + 'chrome_elf.def', |
| + 'chrome_elf_main.cc', |
| + 'chrome_elf_main.h', |
| + ], |
| + 'actions' : [ |
| + { |
| + 'action_name': 'chrome_exe_manifest', |
| + 'variables': { |
| + 'template_input_path': |
| + 'chrome_exe_manifest.template', |
| + }, |
| + 'inputs': [ |
| + '<(template_input_path)', |
| + '<(version_path)', |
| + ], |
| + 'outputs': [ |
| + '<(SHARED_INTERMEDIATE_DIR)/chrome_elf/version_assembly.manifest', |
| + ], |
| + 'action': [ |
| + 'python', '<(version_py_path)', |
| + '-f', '<(version_path)', |
| + '<(template_input_path)', |
| + '<@(_outputs)', |
| + ], |
| + 'message': 'Generating additional manifest files' |
|
gab
2013/11/05 16:43:20
Seems you could do something like 'Generating <@(_
|
| + }, |
| + ], |
| + }, |
| + ], |
| +} |