| 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 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 103 'heap/bitmap-unittest.cc', | 103 'heap/bitmap-unittest.cc', |
| 104 'heap/gc-idle-time-handler-unittest.cc', | 104 'heap/gc-idle-time-handler-unittest.cc', |
| 105 'heap/memory-reducer-unittest.cc', | 105 'heap/memory-reducer-unittest.cc', |
| 106 'heap/heap-unittest.cc', | 106 'heap/heap-unittest.cc', |
| 107 'heap/scavenge-job-unittest.cc', | 107 'heap/scavenge-job-unittest.cc', |
| 108 'locked-queue-unittest.cc', | 108 'locked-queue-unittest.cc', |
| 109 'run-all-unittests.cc', | 109 'run-all-unittests.cc', |
| 110 'runtime/runtime-interpreter-unittest.cc', | 110 'runtime/runtime-interpreter-unittest.cc', |
| 111 'test-utils.h', | 111 'test-utils.h', |
| 112 'test-utils.cc', | 112 'test-utils.cc', |
| 113 'wasm/ast-decoder-unittest.cc', | |
| 114 'wasm/encoder-unittest.cc', | |
| 115 'wasm/module-decoder-unittest.cc', | |
| 116 'wasm/wasm-macro-gen-unittest.cc', | |
| 117 ], | 113 ], |
| 118 'conditions': [ | 114 'conditions': [ |
| 119 ['v8_target_arch=="arm"', { | 115 ['v8_target_arch=="arm"', { |
| 120 'sources': [ ### gcmole(arch:arm) ### | 116 'sources': [ ### gcmole(arch:arm) ### |
| 121 'compiler/arm/instruction-selector-arm-unittest.cc', | 117 'compiler/arm/instruction-selector-arm-unittest.cc', |
| 122 ], | 118 ], |
| 123 }], | 119 }], |
| 124 ['v8_target_arch=="arm64"', { | 120 ['v8_target_arch=="arm64"', { |
| 125 'sources': [ ### gcmole(arch:arm64) ### | 121 'sources': [ ### gcmole(arch:arm64) ### |
| 126 'compiler/arm64/instruction-selector-arm64-unittest.cc', | 122 'compiler/arm64/instruction-selector-arm64-unittest.cc', |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 166 # that show up because we use -std=gnu++0x instead of -std=c++11. | 162 # that show up because we use -std=gnu++0x instead of -std=c++11. |
| 167 'cflags!': [ | 163 'cflags!': [ |
| 168 '-pedantic', | 164 '-pedantic', |
| 169 ], | 165 ], |
| 170 'direct_dependent_settings': { | 166 'direct_dependent_settings': { |
| 171 'cflags!': [ | 167 'cflags!': [ |
| 172 '-pedantic', | 168 '-pedantic', |
| 173 ], | 169 ], |
| 174 }, | 170 }, |
| 175 }], | 171 }], |
| 172 ['v8_wasm!=0', { |
| 173 'sources': [ |
| 174 'wasm/ast-decoder-unittest.cc', |
| 175 'wasm/encoder-unittest.cc', |
| 176 'wasm/module-decoder-unittest.cc', |
| 177 'wasm/wasm-macro-gen-unittest.cc', |
| 178 ], |
| 179 }], |
| 176 ], | 180 ], |
| 177 }, | 181 }, |
| 178 ], | 182 ], |
| 179 'conditions': [ | 183 'conditions': [ |
| 180 ['test_isolation_mode != "noop"', { | 184 ['test_isolation_mode != "noop"', { |
| 181 'targets': [ | 185 'targets': [ |
| 182 { | 186 { |
| 183 'target_name': 'unittests_run', | 187 'target_name': 'unittests_run', |
| 184 'type': 'none', | 188 'type': 'none', |
| 185 'dependencies': [ | 189 'dependencies': [ |
| 186 'unittests', | 190 'unittests', |
| 187 ], | 191 ], |
| 188 'includes': [ | 192 'includes': [ |
| 189 '../../build/isolate.gypi', | 193 '../../build/isolate.gypi', |
| 190 ], | 194 ], |
| 191 'sources': [ | 195 'sources': [ |
| 192 'unittests.isolate', | 196 'unittests.isolate', |
| 193 ], | 197 ], |
| 194 }, | 198 }, |
| 195 ], | 199 ], |
| 196 }], | 200 }], |
| 197 ], | 201 ], |
| 198 } | 202 } |
| OLD | NEW |