| 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 # The sources are kept automatically in sync with BUILD.gn. | 5 # The sources are kept automatically in sync with BUILD.gn. |
| 6 | 6 |
| 7 { | 7 { |
| 8 'variables': { | 8 'variables': { |
| 9 'v8_code': 1, | 9 'v8_code': 1, |
| 10 'unittests_sources': [ ### gcmole(all) ### | 10 'unittests_sources': [ ### gcmole(all) ### |
| (...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 222 ], | 222 ], |
| 223 }], | 223 }], |
| 224 ['v8_target_arch=="s390" or v8_target_arch=="s390x"', { | 224 ['v8_target_arch=="s390" or v8_target_arch=="s390x"', { |
| 225 'sources': [ | 225 'sources': [ |
| 226 '<@(unittests_sources_s390)', | 226 '<@(unittests_sources_s390)', |
| 227 ], | 227 ], |
| 228 }], | 228 }], |
| 229 ['OS=="aix"', { | 229 ['OS=="aix"', { |
| 230 'ldflags': [ '-Wl,-bbigtoc' ], | 230 'ldflags': [ '-Wl,-bbigtoc' ], |
| 231 }], | 231 }], |
| 232 ['v8_enable_i18n_support==1', { |
| 233 'dependencies': [ |
| 234 '<(icu_gyp_path):icui18n', |
| 235 '<(icu_gyp_path):icuuc', |
| 236 ], |
| 237 }], |
| 232 ['os_posix == 1', { | 238 ['os_posix == 1', { |
| 233 # TODO(svenpanne): This is a temporary work-around to fix the warnings | 239 # TODO(svenpanne): This is a temporary work-around to fix the warnings |
| 234 # that show up because we use -std=gnu++0x instead of -std=c++11. | 240 # that show up because we use -std=gnu++0x instead of -std=c++11. |
| 235 'cflags!': [ | 241 'cflags!': [ |
| 236 '-pedantic', | 242 '-pedantic', |
| 237 ], | 243 ], |
| 238 'direct_dependent_settings': { | 244 'direct_dependent_settings': { |
| 239 'cflags!': [ | 245 'cflags!': [ |
| 240 '-pedantic', | 246 '-pedantic', |
| 241 ], | 247 ], |
| (...skipping 15 matching lines...) Expand all Loading... |
| 257 '../../gypfiles/isolate.gypi', | 263 '../../gypfiles/isolate.gypi', |
| 258 ], | 264 ], |
| 259 'sources': [ | 265 'sources': [ |
| 260 'unittests.isolate', | 266 'unittests.isolate', |
| 261 ], | 267 ], |
| 262 }, | 268 }, |
| 263 ], | 269 ], |
| 264 }], | 270 }], |
| 265 ], | 271 ], |
| 266 } | 272 } |
| OLD | NEW |