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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
62 'compiler/node-test-utils.cc', | 62 'compiler/node-test-utils.cc', |
63 'compiler/node-test-utils.h', | 63 'compiler/node-test-utils.h', |
64 'compiler/node-unittest.cc', | 64 'compiler/node-unittest.cc', |
65 'compiler/opcodes-unittest.cc', | 65 'compiler/opcodes-unittest.cc', |
66 'compiler/register-allocator-unittest.cc', | 66 'compiler/register-allocator-unittest.cc', |
67 'compiler/select-lowering-unittest.cc', | 67 'compiler/select-lowering-unittest.cc', |
68 'compiler/simplified-operator-reducer-unittest.cc', | 68 'compiler/simplified-operator-reducer-unittest.cc', |
69 'compiler/simplified-operator-unittest.cc', | 69 'compiler/simplified-operator-unittest.cc', |
70 'compiler/value-numbering-reducer-unittest.cc', | 70 'compiler/value-numbering-reducer-unittest.cc', |
71 'compiler/zone-pool-unittest.cc', | 71 'compiler/zone-pool-unittest.cc', |
| 72 'factory-unittest.cc', |
72 'libplatform/default-platform-unittest.cc', | 73 'libplatform/default-platform-unittest.cc', |
73 'libplatform/task-queue-unittest.cc', | 74 'libplatform/task-queue-unittest.cc', |
74 'libplatform/worker-thread-unittest.cc', | 75 'libplatform/worker-thread-unittest.cc', |
75 'heap/gc-idle-time-handler-unittest.cc', | 76 'heap/gc-idle-time-handler-unittest.cc', |
76 'run-all-unittests.cc', | 77 'run-all-unittests.cc', |
77 'test-utils.h', | 78 'test-utils.h', |
78 'test-utils.cc', | 79 'test-utils.cc', |
79 ], | 80 ], |
80 'conditions': [ | 81 'conditions': [ |
81 ['v8_target_arch=="arm"', { | 82 ['v8_target_arch=="arm"', { |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
139 'direct_dependent_settings': { | 140 'direct_dependent_settings': { |
140 'cflags!': [ | 141 'cflags!': [ |
141 '-pedantic', | 142 '-pedantic', |
142 ], | 143 ], |
143 }, | 144 }, |
144 }], | 145 }], |
145 ], | 146 ], |
146 }, | 147 }, |
147 ], | 148 ], |
148 } | 149 } |
OLD | NEW |