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

Unified Diff: third_party/libc++abi/BUILD.gn

Issue 1145333004: Add GN targets for libc++ and libc++abi. (Closed) Base URL: https://chromium.googlesource.com/chromium/buildtools.git@master
Patch Set: Created 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/libc++/BUILD.gn ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/libc++abi/BUILD.gn
diff --git a/third_party/libc++abi/BUILD.gn b/third_party/libc++abi/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..750dde137b407afe97a739d30cd56445bf1e608e
--- /dev/null
+++ b/third_party/libc++abi/BUILD.gn
@@ -0,0 +1,36 @@
+# Copyright 2015 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+static_library("libc++abi") {
+ sources = [
+ "trunk/src/abort_message.cpp",
+ "trunk/src/cxa_aux_runtime.cpp",
+ "trunk/src/cxa_default_handlers.cpp",
+ "trunk/src/cxa_demangle.cpp",
+ "trunk/src/cxa_exception.cpp",
+ "trunk/src/cxa_exception_storage.cpp",
+ "trunk/src/cxa_guard.cpp",
+ "trunk/src/cxa_handlers.cpp",
+ "trunk/src/cxa_new_delete.cpp",
+ "trunk/src/cxa_personality.cpp",
+ "trunk/src/cxa_unexpected.cpp",
+ "trunk/src/cxa_vector.cpp",
+ "trunk/src/cxa_virtual.cpp",
+ "trunk/src/exception.cpp",
+ "trunk/src/private_typeinfo.cpp",
+ "trunk/src/stdexcept.cpp",
+ "trunk/src/typeinfo.cpp",
+ ]
+ configs -= [
+ "//build/config/compiler:chromium_code",
+ "//build/config/compiler:no_rtti",
+ "//build/config/gcc:no_exceptions",
+ "//build/config/gcc:symbol_visibility_hidden",
+ ]
+ configs += [
+ "//build/config/compiler:no_chromium_code",
+ "//build/config/compiler:rtti",
+ "//buildtools/third_party/libc++:config",
+ ]
+}
« 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