| OLD | NEW |
| 1 # Copyright (c) 2009 Google Inc. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 1 { | 5 { |
| 2 'target_defaults': { | 6 'target_defaults': { |
| 3 'conditions': [ | 7 'conditions': [ |
| 4 ['OS=="win"', { | 8 ['OS=="win"', { |
| 5 'defines': ['PLATFORM_WIN'], | 9 'defines': ['PLATFORM_WIN'], |
| 6 }], | 10 }], |
| 7 ['OS=="mac"', { | 11 ['OS=="mac"', { |
| 8 'defines': ['PLATFORM_MAC'], | 12 'defines': ['PLATFORM_MAC'], |
| 9 }], | 13 }], |
| 10 ['OS=="linux"', { | 14 ['OS=="linux"', { |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 'action': | 50 'action': |
| 47 ['as.bat', 'lib1.c', '<(_outputs)'], | 51 ['as.bat', 'lib1.c', '<(_outputs)'], |
| 48 'message': 'Building assembly file <(RULE_INPUT_PATH)', | 52 'message': 'Building assembly file <(RULE_INPUT_PATH)', |
| 49 'process_outputs_as_sources': 1, | 53 'process_outputs_as_sources': 1, |
| 50 }, | 54 }, |
| 51 ], | 55 ], |
| 52 }, | 56 }, |
| 53 },], | 57 },], |
| 54 ], | 58 ], |
| 55 } | 59 } |
| OLD | NEW |