Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 { | |
| 2 'targets': [ | |
| 3 { | |
| 4 'target_name': 'lib', | |
| 5 'product_name': 'Test64', | |
| 6 'type': 'static_library', | |
| 7 'sources': [ 'my_file.cc' ], | |
| 8 'xcode_settings': { | |
| 9 'ARCHS': [ 'x86_64' ], | |
| 10 }, | |
| 11 }, | |
| 12 { | |
| 13 'target_name': 'exe', | |
| 14 'product_name': 'Test64', | |
| 15 'type': 'executable', | |
| 16 'dependencies': [ 'lib' ], | |
| 17 'sources': [ 'my_main_file.cc' ], | |
| 18 'xcode_settings': { | |
| 19 'ARCHS': [ 'x86_64' ], | |
| 20 }, | |
| 21 }, | |
| 22 ] | |
| 23 } | |
| OLD | NEW |