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