summaryrefslogtreecommitdiffstats
path: root/third_party/libc++abi/libc++abi.gyp
diff options
context:
space:
mode:
authorcmp@chromium.org <cmp@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-12-13 18:45:48 +0000
committercmp@chromium.org <cmp@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-12-13 18:45:48 +0000
commitd231b05d80318f60bea15f8fc0019f57acdcf3ae (patch)
treea5e8e939f3e22f3c52fa770754fa7c26bd39050c /third_party/libc++abi/libc++abi.gyp
parent743b0476d189e95df51c8b856d6291bd7a03103b (diff)
downloadchromium_src-d231b05d80318f60bea15f8fc0019f57acdcf3ae.zip
chromium_src-d231b05d80318f60bea15f8fc0019f57acdcf3ae.tar.gz
chromium_src-d231b05d80318f60bea15f8fc0019f57acdcf3ae.tar.bz2
Revert 240682 "Add libc++ and libc++abi to third-party."
This change broke deps2git. We will add the repos in a bit and we'll add check_deps2git to the CQ. > Add libc++ and libc++abi to third-party. > > BUG=318770, 313751 > R=glider@chromium.org,thakis@chromium.org,bradnelson@chromium.org,darin@chromium.org > > Review URL: https://codereview.chromium.org/75213003 TBR=alextaran@chromium.org Review URL: https://codereview.chromium.org/110333004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@240706 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'third_party/libc++abi/libc++abi.gyp')
-rw-r--r--third_party/libc++abi/libc++abi.gyp91
1 files changed, 0 insertions, 91 deletions
diff --git a/third_party/libc++abi/libc++abi.gyp b/third_party/libc++abi/libc++abi.gyp
deleted file mode 100644
index fe68fed..0000000
--- a/third_party/libc++abi/libc++abi.gyp
+++ /dev/null
@@ -1,91 +0,0 @@
-# Copyright 2013 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.
-
-{
- 'targets': [
- {
- 'target_name': 'libc++abi',
- 'type': 'shared_library',
- 'variables': {
- 'prune_self_dependency': 1,
- },
- 'dependencies=': [],
- 'sources': [
- 'src/abort_message.cpp',
- 'src/cxa_aux_runtime.cpp',
- 'src/cxa_default_handlers.cpp',
- 'src/cxa_demangle.cpp',
- 'src/cxa_exception.cpp',
- 'src/cxa_exception_storage.cpp',
- 'src/cxa_guard.cpp',
- 'src/cxa_handlers.cpp',
- 'src/cxa_new_delete.cpp',
- 'src/cxa_personality.cpp',
- 'src/cxa_unexpected.cpp',
- 'src/cxa_vector.cpp',
- 'src/cxa_virtual.cpp',
- 'src/exception.cpp',
- 'src/private_typeinfo.cpp',
- 'src/stdexcept.cpp',
- 'src/typeinfo.cpp',
- ],
- 'include_dirs': [
- 'include',
- '../libc++/include'
- ],
- 'cflags': [
- '-g', '-O3', '-fPIC',
- '-std=c++11',
- '-fstrict-aliasing',
- '-Wsign-conversion',
- '-Wshadow',
- '-Wconversion',
- '-Wunused-variable',
- '-Wmissing-field-initializers',
- '-Wchar-subscripts',
- '-Wmismatched-tags',
- '-Wmissing-braces',
- '-Wshorten-64-to-32',
- '-Wsign-compare',
- '-Wstrict-aliasing=2',
- '-Wstrict-overflow=4',
- '-Wunused-parameter',
- '-Wnewline-eof',
- '-nostdinc++',
- ],
- 'direct_dependent_settings': {
- 'target_conditions': [
- ['_type!="none"', {
- 'include_dirs': [
- 'include',
- ],
- 'cflags_cc': [
- '-nostdinc++',
- ],
- 'ldflags': [
- '-L<(PRODUCT_DIR)/lib/',
- ],
- }],
- ],
- },
- 'cflags_cc!': [
- '-fno-rtti',
- ],
- 'cflags!': [
- '-fno-exceptions',
- '-fvisibility=hidden',
- ],
- 'ldflags': [
- '-nodefaultlibs',
- ],
- 'ldflags!': [
- '-pthread',
- ],
- 'libraries': [
- '-lrt',
- '-lc',
- ]
- },
- ]
-}