OLD | NEW |
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 static_library("libc++abi") { | 5 static_library("libc++abi") { |
6 sources = [ | 6 sources = [ |
7 "trunk/src/abort_message.cpp", | 7 "trunk/src/abort_message.cpp", |
8 "trunk/src/cxa_aux_runtime.cpp", | 8 "trunk/src/cxa_aux_runtime.cpp", |
9 "trunk/src/cxa_default_handlers.cpp", | 9 "trunk/src/cxa_default_handlers.cpp", |
10 "trunk/src/cxa_demangle.cpp", | 10 "trunk/src/cxa_demangle.cpp", |
11 "trunk/src/cxa_exception.cpp", | 11 "trunk/src/cxa_exception.cpp", |
12 "trunk/src/cxa_exception_storage.cpp", | 12 "trunk/src/cxa_exception_storage.cpp", |
13 "trunk/src/cxa_guard.cpp", | 13 "trunk/src/cxa_guard.cpp", |
14 "trunk/src/cxa_handlers.cpp", | 14 "trunk/src/cxa_handlers.cpp", |
15 "trunk/src/cxa_new_delete.cpp", | 15 "trunk/src/cxa_new_delete.cpp", |
16 "trunk/src/cxa_personality.cpp", | 16 "trunk/src/cxa_personality.cpp", |
| 17 "trunk/src/cxa_thread_atexit.cpp", |
17 "trunk/src/cxa_unexpected.cpp", | 18 "trunk/src/cxa_unexpected.cpp", |
18 "trunk/src/cxa_vector.cpp", | 19 "trunk/src/cxa_vector.cpp", |
19 "trunk/src/cxa_virtual.cpp", | 20 "trunk/src/cxa_virtual.cpp", |
20 "trunk/src/exception.cpp", | 21 "trunk/src/exception.cpp", |
21 "trunk/src/private_typeinfo.cpp", | 22 "trunk/src/private_typeinfo.cpp", |
22 "trunk/src/stdexcept.cpp", | 23 "trunk/src/stdexcept.cpp", |
23 "trunk/src/typeinfo.cpp", | 24 "trunk/src/typeinfo.cpp", |
24 ] | 25 ] |
25 configs -= [ | 26 configs -= [ |
26 "//build/config/compiler:chromium_code", | 27 "//build/config/compiler:chromium_code", |
27 "//build/config/compiler:no_rtti", | 28 "//build/config/compiler:no_rtti", |
28 "//build/config/gcc:no_exceptions", | 29 "//build/config/gcc:no_exceptions", |
29 "//build/config/gcc:symbol_visibility_hidden", | 30 "//build/config/gcc:symbol_visibility_hidden", |
30 ] | 31 ] |
31 configs += [ | 32 configs += [ |
32 "//build/config/compiler:no_chromium_code", | 33 "//build/config/compiler:no_chromium_code", |
33 "//build/config/compiler:rtti", | 34 "//build/config/compiler:rtti", |
34 "//buildtools/third_party/libc++:config", | 35 "//buildtools/third_party/libc++:config", |
35 ] | 36 ] |
36 } | 37 } |
OLD | NEW |