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

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

Issue 2946073002: Fix libc++ ARM build (Closed)
Patch Set: Condition on is_linux too Created 3 years, 6 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/libunwind/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 source_set("libc++abi") { 5 source_set("libc++abi") {
6 visibility = [ "//buildtools/third_party/libc++" ] 6 visibility = [ "//buildtools/third_party/libc++" ]
7 if (is_linux && target_cpu == "arm") {
8 deps = [ "//buildtools/third_party/libunwind" ]
9 }
7 sources = [ 10 sources = [
8 "trunk/src/abort_message.cpp", 11 "trunk/src/abort_message.cpp",
9 "trunk/src/cxa_aux_runtime.cpp", 12 "trunk/src/cxa_aux_runtime.cpp",
10 "trunk/src/cxa_default_handlers.cpp", 13 "trunk/src/cxa_default_handlers.cpp",
11 "trunk/src/cxa_demangle.cpp", 14 "trunk/src/cxa_demangle.cpp",
12 "trunk/src/cxa_exception.cpp", 15 "trunk/src/cxa_exception.cpp",
13 "trunk/src/cxa_exception_storage.cpp", 16 "trunk/src/cxa_exception_storage.cpp",
14 "trunk/src/cxa_guard.cpp", 17 "trunk/src/cxa_guard.cpp",
15 "trunk/src/cxa_handlers.cpp", 18 "trunk/src/cxa_handlers.cpp",
16 19
(...skipping 18 matching lines...) Expand all
35 "//build/config/compiler:chromium_code", 38 "//build/config/compiler:chromium_code",
36 "//build/config/compiler:no_rtti", 39 "//build/config/compiler:no_rtti",
37 "//build/config/gcc:no_exceptions", 40 "//build/config/gcc:no_exceptions",
38 ] 41 ]
39 configs += [ 42 configs += [
40 "//build/config/compiler:no_chromium_code", 43 "//build/config/compiler:no_chromium_code",
41 "//build/config/compiler:rtti", 44 "//build/config/compiler:rtti",
42 "//buildtools/third_party/libc++:config", 45 "//buildtools/third_party/libc++:config",
43 ] 46 ]
44 } 47 }
OLDNEW
« no previous file with comments | « third_party/libc++/BUILD.gn ('k') | third_party/libunwind/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698