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

Side by Side Diff: build/common_untrusted.gypi

Issue 75213003: Add libc++ and libc++abi to third-party. (Closed) Base URL: https://src.chromium.org/chrome/trunk/src/
Patch Set: Add libc++ and libc++abi to third-party. Created 7 years 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
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium 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 # This GYP file should be included for every target in Chromium that is built 5 # This GYP file should be included for every target in Chromium that is built
6 # using the NaCl toolchain. 6 # using the NaCl toolchain.
7 { 7 {
8 'includes': [ 8 'includes': [
9 '../native_client/build/untrusted.gypi', 9 '../native_client/build/untrusted.gypi',
10 ], 10 ],
11 'target_defaults': { 11 'target_defaults': {
12 'conditions': [ 12 'conditions': [
13 ['target_arch=="arm"', { 13 ['target_arch=="arm"', {
14 'variables': { 14 'variables': {
15 'clang': 1, 15 'clang': 1,
16 }, 16 },
17 'defines': [ 17 'defines': [
18 # Needed by build/build_config.h processor architecture detection. 18 # Needed by build/build_config.h processor architecture detection.
19 '__ARMEL__', 19 '__ARMEL__',
20 # Needed by base/third_party/nspr/prtime.cc. 20 # Needed by base/third_party/nspr/prtime.cc.
21 '__arm__', 21 '__arm__',
22 # Disable ValGrind. The assembly code it generates causes the build 22 # Disable ValGrind. The assembly code it generates causes the build
23 # to fail. 23 # to fail.
24 'NVALGRIND', 24 'NVALGRIND',
25 ], 25 ],
26 }], 26 }],
27 ['use_libcxx==1', {
28 'dependencies!': [
29 '<(DEPTH)/third_party/libc++/libc++.gyp:libc++',
30 '<(DEPTH)/third_party/libc++abi/libc++abi.gyp:libc++abi',
31 ],
32 }],
27 ], 33 ],
28 }, 34 },
29 } 35 }
OLDNEW
« no previous file with comments | « build/common.gypi ('k') | media/media_untrusted.gyp » ('j') | media/media_untrusted.gyp » ('J')

Powered by Google App Engine
This is Rietveld 408576698