| 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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 ['v8_target_arch=="mips64el"', { | 96 ['v8_target_arch=="mips64el"', { |
| 97 'sources': [ ### gcmole(arch:mips64el) ### | 97 'sources': [ ### gcmole(arch:mips64el) ### |
| 98 'compiler/mips64/instruction-selector-mips64-unittest.cc', | 98 'compiler/mips64/instruction-selector-mips64-unittest.cc', |
| 99 ], | 99 ], |
| 100 }], | 100 }], |
| 101 ['v8_target_arch=="x64"', { | 101 ['v8_target_arch=="x64"', { |
| 102 'sources': [ ### gcmole(arch:x64) ### | 102 'sources': [ ### gcmole(arch:x64) ### |
| 103 'compiler/x64/instruction-selector-x64-unittest.cc', | 103 'compiler/x64/instruction-selector-x64-unittest.cc', |
| 104 ], | 104 ], |
| 105 }], | 105 }], |
| 106 ['v8_target_arch=="ppc" or v8_target_arch=="ppc64"', { |
| 107 'sources': [ ### gcmole(arch:ppc) ### |
| 108 'compiler/ppc/instruction-selector-ppc-unittest.cc', |
| 109 ], |
| 110 }], |
| 106 ['component=="shared_library"', { | 111 ['component=="shared_library"', { |
| 107 # compiler-unittests can't be built against a shared library, so we | 112 # compiler-unittests can't be built against a shared library, so we |
| 108 # need to depend on the underlying static target in that case. | 113 # need to depend on the underlying static target in that case. |
| 109 'conditions': [ | 114 'conditions': [ |
| 110 ['v8_use_snapshot=="true" and v8_use_external_startup_data==0', { | 115 ['v8_use_snapshot=="true" and v8_use_external_startup_data==0', { |
| 111 'dependencies': ['../../tools/gyp/v8.gyp:v8_snapshot'], | 116 'dependencies': ['../../tools/gyp/v8.gyp:v8_snapshot'], |
| 112 }], | 117 }], |
| 113 ['v8_use_snapshot=="true" and v8_use_external_startup_data==1', { | 118 ['v8_use_snapshot=="true" and v8_use_external_startup_data==1', { |
| 114 'dependencies': ['../../tools/gyp/v8.gyp:v8_external_snapshot'], | 119 'dependencies': ['../../tools/gyp/v8.gyp:v8_external_snapshot'], |
| 115 }], | 120 }], |
| (...skipping 13 matching lines...) Expand all Loading... |
| 129 'direct_dependent_settings': { | 134 'direct_dependent_settings': { |
| 130 'cflags!': [ | 135 'cflags!': [ |
| 131 '-pedantic', | 136 '-pedantic', |
| 132 ], | 137 ], |
| 133 }, | 138 }, |
| 134 }], | 139 }], |
| 135 ], | 140 ], |
| 136 }, | 141 }, |
| 137 ], | 142 ], |
| 138 } | 143 } |
| OLD | NEW |