| 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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 ['v8_target_arch=="arm64"', { | 66 ['v8_target_arch=="arm64"', { |
| 67 'sources': [ ### gcmole(arch:arm64) ### | 67 'sources': [ ### gcmole(arch:arm64) ### |
| 68 'compiler/arm64/instruction-selector-arm64-unittest.cc', | 68 'compiler/arm64/instruction-selector-arm64-unittest.cc', |
| 69 ], | 69 ], |
| 70 }], | 70 }], |
| 71 ['v8_target_arch=="ia32"', { | 71 ['v8_target_arch=="ia32"', { |
| 72 'sources': [ ### gcmole(arch:ia32) ### | 72 'sources': [ ### gcmole(arch:ia32) ### |
| 73 'compiler/ia32/instruction-selector-ia32-unittest.cc', | 73 'compiler/ia32/instruction-selector-ia32-unittest.cc', |
| 74 ], | 74 ], |
| 75 }], | 75 }], |
| 76 ['v8_target_arch=="mipsel"', { |
| 77 'sources': [ ### gcmole(arch:mipsel) ### |
| 78 'compiler/mips/instruction-selector-mips-unittest.cc', |
| 79 ], |
| 80 }], |
| 76 ['v8_target_arch=="x64"', { | 81 ['v8_target_arch=="x64"', { |
| 77 'sources': [ ### gcmole(arch:x64) ### | 82 'sources': [ ### gcmole(arch:x64) ### |
| 78 'compiler/x64/instruction-selector-x64-unittest.cc', | 83 'compiler/x64/instruction-selector-x64-unittest.cc', |
| 79 ], | 84 ], |
| 80 }], | 85 }], |
| 81 ['component=="shared_library"', { | 86 ['component=="shared_library"', { |
| 82 # compiler-unittests can't be built against a shared library, so we | 87 # compiler-unittests can't be built against a shared library, so we |
| 83 # need to depend on the underlying static target in that case. | 88 # need to depend on the underlying static target in that case. |
| 84 'conditions': [ | 89 'conditions': [ |
| 85 ['v8_use_snapshot=="true"', { | 90 ['v8_use_snapshot=="true"', { |
| (...skipping 17 matching lines...) Expand all Loading... |
| 103 'direct_dependent_settings': { | 108 'direct_dependent_settings': { |
| 104 'cflags!': [ | 109 'cflags!': [ |
| 105 '-pedantic', | 110 '-pedantic', |
| 106 ], | 111 ], |
| 107 }, | 112 }, |
| 108 }], | 113 }], |
| 109 ], | 114 ], |
| 110 }, | 115 }, |
| 111 ], | 116 ], |
| 112 } | 117 } |
| OLD | NEW |