| OLD | NEW |
| (Empty) | |
| 1 { |
| 2 'target_defaults': { |
| 3 'target_conditions': [ |
| 4 ['_toolset=="target"', {'defines': ['TARGET']}] |
| 5 ] |
| 6 }, |
| 7 'targets': [ |
| 8 { |
| 9 'target_name': 'toolsets', |
| 10 'type': 'static_library', |
| 11 'toolsets': ['target', 'host'], |
| 12 'sources': [ |
| 13 'toolsets.cc', |
| 14 ], |
| 15 }, |
| 16 { |
| 17 'target_name': 'host-main', |
| 18 'type': 'executable', |
| 19 'toolsets': ['host'], |
| 20 'dependencies': ['toolsets'], |
| 21 'sources': [ |
| 22 'main.cc', |
| 23 ], |
| 24 }, |
| 25 { |
| 26 'target_name': 'target-main', |
| 27 'type': 'executable', |
| 28 'dependencies': ['toolsets'], |
| 29 'sources': [ |
| 30 'main.cc', |
| 31 ], |
| 32 }, |
| 33 ], |
| 34 } |
| OLD | NEW |