Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 { | |
| 2 'targets': [ | |
| 3 { | |
| 4 'target_name': 'a', | |
| 5 'type': 'none', | |
| 6 'sources': ['a.cc'], | |
| 7 'all_dependent_settings': {'sources': ['a.cc']}, | |
|
Nico
2015/06/18 21:51:58
Do direct_dependent_settings work correctly alread
Dan Beam
2015/06/18 21:56:27
unless I'm misunderstanding something: they might
| |
| 8 }, | |
| 9 { | |
| 10 'target_name': 'b', | |
| 11 'type': 'none', | |
| 12 'sources': ['b.cc'], | |
| 13 'all_dependent_settings': {'sources': ['b.cc']}, | |
| 14 'dependencies': ['a'], | |
| 15 }, | |
| 16 | |
| 17 { | |
| 18 'target_name': 'c', | |
| 19 'type': 'none', | |
| 20 'sources': ['c.cc'], | |
| 21 'all_dependent_settings': {'sources': ['c.cc']}, | |
| 22 'dependencies': ['b', 'a'], | |
| 23 }, | |
| 24 { | |
| 25 'target_name': 'd', | |
| 26 'type': 'none', | |
| 27 'sources': ['d.cc'], | |
| 28 'dependencies': ['c', 'a', 'b'], | |
| 29 'actions': [ | |
| 30 { | |
| 31 'action_name': 'write_sources', | |
| 32 'inputs': ['write_args.py'], | |
| 33 'outputs': ['<(PRODUCT_DIR)/out.txt'], | |
| 34 'action': [ | |
| 35 'python', | |
| 36 'write_args.py', | |
| 37 '<(PRODUCT_DIR)/out.txt', | |
| 38 '>@(_sources)' | |
| 39 ], | |
| 40 'msvs_cygwin_shell': 0, | |
| 41 }, | |
| 42 ], | |
| 43 }, | |
| 44 ], | |
| 45 } | |
| OLD | NEW |