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

Side by Side Diff: third_party/libc++/libc++.gyp

Issue 1559483002: Sanitizers: Roll in 16 months of libcxx and libcxxabi changes. (Closed) Base URL: https://chromium.googlesource.com/chromium/buildtools.git@master
Patch Set: buildfiles Created 4 years, 11 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 | « third_party/libc++/BUILD.gn ('k') | third_party/libc++abi/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'libcxx_proxy', 8 'target_name': 'libcxx_proxy',
9 'type': 'none', 9 'type': 'none',
10 'toolsets': ['host', 'target'], 10 'toolsets': ['host', 'target'],
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 'type': 'shared_library', 50 'type': 'shared_library',
51 'toolsets': ['host', 'target'], 51 'toolsets': ['host', 'target'],
52 'dependencies=': [ 52 'dependencies=': [
53 # libc++abi is linked statically into libc++.so. This allows us to get 53 # libc++abi is linked statically into libc++.so. This allows us to get
54 # both libc++ and libc++abi by passing '-stdlib=libc++'. If libc++abi 54 # both libc++ and libc++abi by passing '-stdlib=libc++'. If libc++abi
55 # was a separate DSO, we'd have to link against it explicitly. 55 # was a separate DSO, we'd have to link against it explicitly.
56 '../libc++abi/libc++abi.gyp:libc++abi', 56 '../libc++abi/libc++abi.gyp:libc++abi',
57 ], 57 ],
58 'sources': [ 58 'sources': [
59 'trunk/src/algorithm.cpp', 59 'trunk/src/algorithm.cpp',
60 'trunk/src/any.cpp',
60 'trunk/src/bind.cpp', 61 'trunk/src/bind.cpp',
61 'trunk/src/chrono.cpp', 62 'trunk/src/chrono.cpp',
62 'trunk/src/condition_variable.cpp', 63 'trunk/src/condition_variable.cpp',
63 'trunk/src/debug.cpp', 64 'trunk/src/debug.cpp',
64 'trunk/src/exception.cpp', 65 'trunk/src/exception.cpp',
65 'trunk/src/future.cpp', 66 'trunk/src/future.cpp',
66 'trunk/src/hash.cpp', 67 'trunk/src/hash.cpp',
67 'trunk/src/ios.cpp', 68 'trunk/src/ios.cpp',
68 'trunk/src/iostream.cpp', 69 'trunk/src/iostream.cpp',
69 'trunk/src/locale.cpp', 70 'trunk/src/locale.cpp',
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 'libraries': [ 113 'libraries': [
113 '-lc', 114 '-lc',
114 '-lgcc_s', 115 '-lgcc_s',
115 '-lm', 116 '-lm',
116 '-lpthread', 117 '-lpthread',
117 '-lrt', 118 '-lrt',
118 ], 119 ],
119 }, 120 },
120 ] 121 ]
121 } 122 }
OLDNEW
« no previous file with comments | « third_party/libc++/BUILD.gn ('k') | third_party/libc++abi/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698