| 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 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 163 'cflags!': [ | 163 'cflags!': [ |
| 164 '-pedantic', | 164 '-pedantic', |
| 165 ], | 165 ], |
| 166 'direct_dependent_settings': { | 166 'direct_dependent_settings': { |
| 167 'cflags!': [ | 167 'cflags!': [ |
| 168 '-pedantic', | 168 '-pedantic', |
| 169 ], | 169 ], |
| 170 }, | 170 }, |
| 171 }], | 171 }], |
| 172 ['v8_wasm!=0', { | 172 ['v8_wasm!=0', { |
| 173 'dependencies': [ | 173 'sources': [ |
| 174 '../../third_party/wasm/test/unittests/wasm/wasm.gyp:wasm_unittests'
, | 174 'wasm/ast-decoder-unittest.cc', |
| 175 'wasm/encoder-unittest.cc', |
| 176 'wasm/module-decoder-unittest.cc', |
| 177 'wasm/wasm-macro-gen-unittest.cc', |
| 175 ], | 178 ], |
| 176 }], | 179 }], |
| 177 ], | 180 ], |
| 178 }, | 181 }, |
| 179 ], | 182 ], |
| 180 'conditions': [ | 183 'conditions': [ |
| 181 ['test_isolation_mode != "noop"', { | 184 ['test_isolation_mode != "noop"', { |
| 182 'targets': [ | 185 'targets': [ |
| 183 { | 186 { |
| 184 'target_name': 'unittests_run', | 187 'target_name': 'unittests_run', |
| 185 'type': 'none', | 188 'type': 'none', |
| 186 'dependencies': [ | 189 'dependencies': [ |
| 187 'unittests', | 190 'unittests', |
| 188 ], | 191 ], |
| 189 'includes': [ | 192 'includes': [ |
| 190 '../../build/isolate.gypi', | 193 '../../build/isolate.gypi', |
| 191 ], | 194 ], |
| 192 'sources': [ | 195 'sources': [ |
| 193 'unittests.isolate', | 196 'unittests.isolate', |
| 194 ], | 197 ], |
| 195 }, | 198 }, |
| 196 ], | 199 ], |
| 197 }], | 200 }], |
| 198 ], | 201 ], |
| 199 } | 202 } |
| OLD | NEW |