| 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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 'counters-unittest.cc', | 87 'counters-unittest.cc', |
| 88 'libplatform/default-platform-unittest.cc', | 88 'libplatform/default-platform-unittest.cc', |
| 89 'libplatform/task-queue-unittest.cc', | 89 'libplatform/task-queue-unittest.cc', |
| 90 'libplatform/worker-thread-unittest.cc', | 90 'libplatform/worker-thread-unittest.cc', |
| 91 'heap/gc-idle-time-handler-unittest.cc', | 91 'heap/gc-idle-time-handler-unittest.cc', |
| 92 'heap/memory-reducer-unittest.cc', | 92 'heap/memory-reducer-unittest.cc', |
| 93 'heap/heap-unittest.cc', | 93 'heap/heap-unittest.cc', |
| 94 'run-all-unittests.cc', | 94 'run-all-unittests.cc', |
| 95 'test-utils.h', | 95 'test-utils.h', |
| 96 'test-utils.cc', | 96 'test-utils.cc', |
| 97 '../../src/startup-data-util.h', | |
| 98 '../../src/startup-data-util.cc' | |
| 99 ], | 97 ], |
| 100 'conditions': [ | 98 'conditions': [ |
| 101 ['v8_target_arch=="arm"', { | 99 ['v8_target_arch=="arm"', { |
| 102 'sources': [ ### gcmole(arch:arm) ### | 100 'sources': [ ### gcmole(arch:arm) ### |
| 103 'compiler/arm/instruction-selector-arm-unittest.cc', | 101 'compiler/arm/instruction-selector-arm-unittest.cc', |
| 104 ], | 102 ], |
| 105 }], | 103 }], |
| 106 ['v8_target_arch=="arm64"', { | 104 ['v8_target_arch=="arm64"', { |
| 107 'sources': [ ### gcmole(arch:arm64) ### | 105 'sources': [ ### gcmole(arch:arm64) ### |
| 108 'compiler/arm64/instruction-selector-arm64-unittest.cc', | 106 'compiler/arm64/instruction-selector-arm64-unittest.cc', |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 'direct_dependent_settings': { | 150 'direct_dependent_settings': { |
| 153 'cflags!': [ | 151 'cflags!': [ |
| 154 '-pedantic', | 152 '-pedantic', |
| 155 ], | 153 ], |
| 156 }, | 154 }, |
| 157 }], | 155 }], |
| 158 ], | 156 ], |
| 159 }, | 157 }, |
| 160 ], | 158 ], |
| 161 } | 159 } |
| OLD | NEW |