| OLD | NEW |
| 1 # Copyright 2014 the V8 project authors. All rights reserved. | 1 # Copyright 2014 the V8 project authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 { | 5 { |
| 6 'variables': { | 6 'variables': { |
| 7 'v8_code': 1, | 7 'v8_code': 1, |
| 8 }, | 8 }, |
| 9 'includes': ['../../build/toolchain.gypi', '../../build/features.gypi'], | 9 'includes': ['../../build/toolchain.gypi', '../../build/features.gypi'], |
| 10 'targets': [ | 10 'targets': [ |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 # that show up because we use -std=gnu++0x instead of -std=c++11. | 99 # that show up because we use -std=gnu++0x instead of -std=c++11. |
| 100 'cflags!': [ | 100 'cflags!': [ |
| 101 '-pedantic', | 101 '-pedantic', |
| 102 ], | 102 ], |
| 103 'direct_dependent_settings': { | 103 'direct_dependent_settings': { |
| 104 'cflags!': [ | 104 'cflags!': [ |
| 105 '-pedantic', | 105 '-pedantic', |
| 106 ], | 106 ], |
| 107 }, | 107 }, |
| 108 }], | 108 }], |
| 109 ['want_separate_host_toolset==1', { | |
| 110 'toolsets': ['host', 'target'], | |
| 111 }, { | |
| 112 'toolsets': ['target'], | |
| 113 }], | |
| 114 ], | 109 ], |
| 115 }, | 110 }, |
| 116 ], | 111 ], |
| 117 } | 112 } |
| OLD | NEW |