| 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': [ |
| 11 { | 11 { |
| 12 'target_name': 'compiler-unittests', | 12 'target_name': 'compiler-unittests', |
| 13 'type': 'executable', | 13 'type': 'executable', |
| 14 'dependencies': [ | 14 'dependencies': [ |
| 15 '../test/test.gyp:run-all-unittests', | 15 '../test/test.gyp:run-all-unittests', |
| 16 ], | 16 ], |
| 17 'include_dirs': [ | 17 'include_dirs': [ |
| 18 '../..', | 18 '../..', |
| 19 ], | 19 ], |
| 20 'sources': [ ### gcmole(all) ### | 20 'sources': [ ### gcmole(all) ### |
| 21 'change-lowering-unittest.cc', | 21 'change-lowering-unittest.cc', |
| 22 'common-operator-unittest.cc', | 22 'common-operator-unittest.cc', |
| 23 'compiler-test-utils.h', | 23 'compiler-test-utils.h', |
| 24 'graph-reducer-unittest.cc', | 24 'graph-reducer-unittest.cc', |
| 25 'graph-unittest.cc', | 25 'graph-unittest.cc', |
| 26 'graph-unittest.h', | 26 'graph-unittest.h', |
| 27 'instruction-selector-unittest.cc', | 27 'instruction-selector-unittest.cc', |
| 28 'instruction-selector-unittest.h', | 28 'instruction-selector-unittest.h', |
| 29 'js-builtin-reducer-unittest.cc', | 29 'js-builtin-reducer-unittest.cc', |
| 30 'js-operator-unittest.cc', |
| 30 'machine-operator-reducer-unittest.cc', | 31 'machine-operator-reducer-unittest.cc', |
| 31 'machine-operator-unittest.cc', | 32 'machine-operator-unittest.cc', |
| 32 'simplified-operator-reducer-unittest.cc', | 33 'simplified-operator-reducer-unittest.cc', |
| 33 'simplified-operator-unittest.cc', | 34 'simplified-operator-unittest.cc', |
| 34 'value-numbering-reducer-unittest.cc', | 35 'value-numbering-reducer-unittest.cc', |
| 35 ], | 36 ], |
| 36 'conditions': [ | 37 'conditions': [ |
| 37 ['v8_target_arch=="arm"', { | 38 ['v8_target_arch=="arm"', { |
| 38 'sources': [ ### gcmole(arch:arm) ### | 39 'sources': [ ### gcmole(arch:arm) ### |
| 39 'arm/instruction-selector-arm-unittest.cc', | 40 'arm/instruction-selector-arm-unittest.cc', |
| (...skipping 11 matching lines...) Expand all Loading... |
| 51 }], | 52 }], |
| 52 ['v8_target_arch=="x64"', { | 53 ['v8_target_arch=="x64"', { |
| 53 'sources': [ ### gcmole(arch:x64) ### | 54 'sources': [ ### gcmole(arch:x64) ### |
| 54 'x64/instruction-selector-x64-unittest.cc', | 55 'x64/instruction-selector-x64-unittest.cc', |
| 55 ], | 56 ], |
| 56 }], | 57 }], |
| 57 ], | 58 ], |
| 58 }, | 59 }, |
| 59 ], | 60 ], |
| 60 } | 61 } |
| OLD | NEW |