Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(29)

Side by Side Diff: test/unittests/unittests.gyp

Issue 1115763003: Switch to larger TOC on AIX for unitttests (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698