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 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
119 ['v8_target_arch=="x64"', { | 119 ['v8_target_arch=="x64"', { |
120 'sources': [ ### gcmole(arch:x64) ### | 120 'sources': [ ### gcmole(arch:x64) ### |
121 'compiler/x64/instruction-selector-x64-unittest.cc', | 121 'compiler/x64/instruction-selector-x64-unittest.cc', |
122 ], | 122 ], |
123 }], | 123 }], |
124 ['v8_target_arch=="ppc" or v8_target_arch=="ppc64"', { | 124 ['v8_target_arch=="ppc" or v8_target_arch=="ppc64"', { |
125 'sources': [ ### gcmole(arch:ppc) ### | 125 'sources': [ ### gcmole(arch:ppc) ### |
126 'compiler/ppc/instruction-selector-ppc-unittest.cc', | 126 'compiler/ppc/instruction-selector-ppc-unittest.cc', |
127 ], | 127 ], |
128 }], | 128 }], |
| 129 ['OS=="aix"', { |
| 130 'ldflags': [ '-Wl,-bbigtoc' ], |
| 131 }], |
129 ['component=="shared_library"', { | 132 ['component=="shared_library"', { |
130 # compiler-unittests can't be built against a shared library, so we | 133 # compiler-unittests can't be built against a shared library, so we |
131 # need to depend on the underlying static target in that case. | 134 # need to depend on the underlying static target in that case. |
132 'dependencies': ['../../tools/gyp/v8.gyp:v8_maybe_snapshot'], | 135 'dependencies': ['../../tools/gyp/v8.gyp:v8_maybe_snapshot'], |
133 }, { | 136 }, { |
134 'dependencies': ['../../tools/gyp/v8.gyp:v8'], | 137 'dependencies': ['../../tools/gyp/v8.gyp:v8'], |
135 }], | 138 }], |
136 ['os_posix == 1', { | 139 ['os_posix == 1', { |
137 # TODO(svenpanne): This is a temporary work-around to fix the warnings | 140 # TODO(svenpanne): This is a temporary work-around to fix the warnings |
138 # that show up because we use -std=gnu++0x instead of -std=c++11. | 141 # that show up because we use -std=gnu++0x instead of -std=c++11. |
139 'cflags!': [ | 142 'cflags!': [ |
140 '-pedantic', | 143 '-pedantic', |
141 ], | 144 ], |
142 'direct_dependent_settings': { | 145 'direct_dependent_settings': { |
143 'cflags!': [ | 146 'cflags!': [ |
144 '-pedantic', | 147 '-pedantic', |
145 ], | 148 ], |
146 }, | 149 }, |
147 }], | 150 }], |
148 ], | 151 ], |
149 }, | 152 }, |
150 ], | 153 ], |
151 } | 154 } |
OLD | NEW |