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

Side by Side Diff: third_party/libc++abi/BUILD.gn

Issue 2897463004: libc++: change default symbol visibility to hidden (Closed)
Patch Set: Update libc++abi as well Created 3 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 | « third_party/libc++/BUILD.gn ('k') | 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 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 config("libc++abi_warnings") { 5 config("libc++abi_warnings") {
6 if (is_clang) { 6 if (is_clang) {
7 # http://llvm.org/PR25978 7 # http://llvm.org/PR25978
8 cflags = [ "-Wno-unused-function" ] 8 cflags = [ "-Wno-unused-function" ]
9 } 9 }
10 } 10 }
(...skipping 16 matching lines...) Expand all
27 "trunk/src/cxa_virtual.cpp", 27 "trunk/src/cxa_virtual.cpp",
28 "trunk/src/exception.cpp", 28 "trunk/src/exception.cpp",
29 "trunk/src/private_typeinfo.cpp", 29 "trunk/src/private_typeinfo.cpp",
30 "trunk/src/stdexcept.cpp", 30 "trunk/src/stdexcept.cpp",
31 "trunk/src/typeinfo.cpp", 31 "trunk/src/typeinfo.cpp",
32 ] 32 ]
33 configs -= [ 33 configs -= [
34 "//build/config/compiler:chromium_code", 34 "//build/config/compiler:chromium_code",
35 "//build/config/compiler:no_rtti", 35 "//build/config/compiler:no_rtti",
36 "//build/config/gcc:no_exceptions", 36 "//build/config/gcc:no_exceptions",
37 "//build/config/gcc:symbol_visibility_hidden",
38 ] 37 ]
39 configs += [ 38 configs += [
40 "//build/config/compiler:no_chromium_code", 39 "//build/config/compiler:no_chromium_code",
41 "//build/config/compiler:rtti", 40 "//build/config/compiler:rtti",
42 "//build/config/gcc:symbol_visibility_default",
43 "//buildtools/third_party/libc++:config", 41 "//buildtools/third_party/libc++:config",
44 # Must be after no_chromium_code. 42 # Must be after no_chromium_code.
45 ":libc++abi_warnings", 43 ":libc++abi_warnings",
46 ] 44 ]
47 } 45 }
OLDNEW
« no previous file with comments | « third_party/libc++/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698