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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 'interpreter/bytecode-array-builder-unittest.cc', | 97 'interpreter/bytecode-array-builder-unittest.cc', |
98 'libplatform/default-platform-unittest.cc', | 98 'libplatform/default-platform-unittest.cc', |
99 'libplatform/task-queue-unittest.cc', | 99 'libplatform/task-queue-unittest.cc', |
100 'libplatform/worker-thread-unittest.cc', | 100 'libplatform/worker-thread-unittest.cc', |
101 'heap/gc-idle-time-handler-unittest.cc', | 101 'heap/gc-idle-time-handler-unittest.cc', |
102 'heap/memory-reducer-unittest.cc', | 102 'heap/memory-reducer-unittest.cc', |
103 'heap/heap-unittest.cc', | 103 'heap/heap-unittest.cc', |
104 'run-all-unittests.cc', | 104 'run-all-unittests.cc', |
105 'test-utils.h', | 105 'test-utils.h', |
106 'test-utils.cc', | 106 'test-utils.cc', |
107 '../../src/startup-data-util.h', | |
108 '../../src/startup-data-util.cc' | |
109 ], | 107 ], |
110 'conditions': [ | 108 'conditions': [ |
111 ['v8_target_arch=="arm"', { | 109 ['v8_target_arch=="arm"', { |
112 'sources': [ ### gcmole(arch:arm) ### | 110 'sources': [ ### gcmole(arch:arm) ### |
113 'compiler/arm/instruction-selector-arm-unittest.cc', | 111 'compiler/arm/instruction-selector-arm-unittest.cc', |
114 ], | 112 ], |
115 }], | 113 }], |
116 ['v8_target_arch=="arm64"', { | 114 ['v8_target_arch=="arm64"', { |
117 'sources': [ ### gcmole(arch:arm64) ### | 115 'sources': [ ### gcmole(arch:arm64) ### |
118 'compiler/arm64/instruction-selector-arm64-unittest.cc', | 116 'compiler/arm64/instruction-selector-arm64-unittest.cc', |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
162 'direct_dependent_settings': { | 160 'direct_dependent_settings': { |
163 'cflags!': [ | 161 'cflags!': [ |
164 '-pedantic', | 162 '-pedantic', |
165 ], | 163 ], |
166 }, | 164 }, |
167 }], | 165 }], |
168 ], | 166 ], |
169 }, | 167 }, |
170 ], | 168 ], |
171 } | 169 } |
OLD | NEW |