summaryrefslogtreecommitdiffstats
path: root/third_party
diff options
context:
space:
mode:
authornick@chromium.org <nick@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-12-18 18:00:27 +0000
committernick@chromium.org <nick@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-12-18 18:00:27 +0000
commit265338b8e342a7a0254a3b6dd0580c528b9ce7a3 (patch)
tree375d3da5002434ac47db8ab2f0b3e21e783f77fe /third_party
parentedd5998683f4c4f09f1aa530f03a1e04877742e6 (diff)
downloadchromium_src-265338b8e342a7a0254a3b6dd0580c528b9ce7a3.zip
chromium_src-265338b8e342a7a0254a3b6dd0580c528b9ce7a3.tar.gz
chromium_src-265338b8e342a7a0254a3b6dd0580c528b9ce7a3.tar.bz2
Revert 241574 "Add libc++ and libc++abi to third-party."
[Reason for revert: linux builder check_licenses failure. - nick] > Add libc++ and libc++abi to third-party. > > BUG=318770, 313751 > R=glider@chromium.org,thakis@chromium.org,bradnelson@chromium.org,darin@chromium.org > > Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=240682 > > Review URL: https://codereview.chromium.org/75213003 TBR=alextaran@chromium.org Review URL: https://codereview.chromium.org/118243004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@241595 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'third_party')
-rw-r--r--third_party/libc++/OWNERS2
-rw-r--r--third_party/libc++/README.chromium13
-rw-r--r--third_party/libc++/libc++.gyp96
-rw-r--r--third_party/libc++abi/OWNERS2
-rw-r--r--third_party/libc++abi/README.chromium13
-rw-r--r--third_party/libc++abi/libc++abi.gyp91
6 files changed, 0 insertions, 217 deletions
diff --git a/third_party/libc++/OWNERS b/third_party/libc++/OWNERS
deleted file mode 100644
index b90d1ad..0000000
--- a/third_party/libc++/OWNERS
+++ /dev/null
@@ -1,2 +0,0 @@
-earthdok@chromium.org
-glider@chromium.org
diff --git a/third_party/libc++/README.chromium b/third_party/libc++/README.chromium
deleted file mode 100644
index b92145d..0000000
--- a/third_party/libc++/README.chromium
+++ /dev/null
@@ -1,13 +0,0 @@
-Name: libcxx
-Short Name: libc++
-URL: http://libcxx.llvm.org/
-Version: 1.0
-License: MIT, University of Illinois/NCSA Open Source License
-License File: trunk/LICENSE.TXT
-Security Critical: no
-
-Description:
-
-libc++ for Chromium.
-This is intended for instrumented builds, not for release.
-There was no security review for this library.
diff --git a/third_party/libc++/libc++.gyp b/third_party/libc++/libc++.gyp
deleted file mode 100644
index fd9c604..0000000
--- a/third_party/libc++/libc++.gyp
+++ /dev/null
@@ -1,96 +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++',
- 'type': 'shared_library',
- 'variables': {
- 'prune_self_dependency': 1,
- },
- 'dependencies=': [],
- 'sources': [
- 'trunk/src/algorithm.cpp',
- 'trunk/src/bind.cpp',
- 'trunk/src/chrono.cpp',
- 'trunk/src/condition_variable.cpp',
- 'trunk/src/debug.cpp',
- 'trunk/src/exception.cpp',
- 'trunk/src/future.cpp',
- 'trunk/src/hash.cpp',
- 'trunk/src/ios.cpp',
- 'trunk/src/iostream.cpp',
- 'trunk/src/locale.cpp',
- 'trunk/src/memory.cpp',
- 'trunk/src/mutex.cpp',
- 'trunk/src/new.cpp',
- 'trunk/src/optional.cpp',
- 'trunk/src/random.cpp',
- 'trunk/src/regex.cpp',
- 'trunk/src/shared_mutex.cpp',
- 'trunk/src/stdexcept.cpp',
- 'trunk/src/string.cpp',
- 'trunk/src/strstream.cpp',
- 'trunk/src/system_error.cpp',
- 'trunk/src/thread.cpp',
- 'trunk/src/typeinfo.cpp',
- 'trunk/src/utility.cpp',
- 'trunk/src/valarray.cpp',
- ],
- 'include_dirs': [
- 'trunk/include',
- '../libc++abi/trunk/include',
- ],
- 'cflags': [
- '-g', '-Os', '-fPIC',
- '-std=c++11',
- '-fstrict-aliasing',
- '-Wall',
- '-Wextra',
- '-Wshadow',
- '-Wconversion',
- '-Wnewline-eof',
- '-Wpadded',
- '-Wmissing-prototypes',
- '-Wstrict-aliasing=2',
- '-Wstrict-overflow=4',
- '-nostdinc++',
- ],
- 'direct_dependent_settings': {
- 'target_conditions': [
- ['_type!="none"', {
- 'include_dirs': [
- 'trunk/include',
- ],
- 'cflags_cc': [
- '-nostdinc++',
- ],
- 'ldflags': [
- '-stdlib=libc++',
- '-L<(PRODUCT_DIR)/lib/',
- ],
- }],
- ],
- },
- 'cflags_cc!': [
- '-fno-rtti',
- ],
- 'cflags!': [
- '-fno-exceptions',
- '-fvisibility=hidden',
- ],
- 'ldflags': [
- '-nodefaultlibs',
- ],
- 'ldflags!': [
- '-pthread',
- ],
- 'libraries': [
- '-lrt',
- '-lc',
- ],
- },
- ]
-}
diff --git a/third_party/libc++abi/OWNERS b/third_party/libc++abi/OWNERS
deleted file mode 100644
index b90d1ad..0000000
--- a/third_party/libc++abi/OWNERS
+++ /dev/null
@@ -1,2 +0,0 @@
-earthdok@chromium.org
-glider@chromium.org
diff --git a/third_party/libc++abi/README.chromium b/third_party/libc++abi/README.chromium
deleted file mode 100644
index c676b3b..0000000
--- a/third_party/libc++abi/README.chromium
+++ /dev/null
@@ -1,13 +0,0 @@
-Name: libcxxabi
-Short Name: libc++abi
-URL: http://libcxxabi.llvm.org/
-Version: 1.0
-License: MIT, University of Illinois/NCSA Open Source License
-License File: trunk/LICENSE.TXT
-Security Critical: no
-
-Description:
-
-libc++abi for Chromium.
-This is intended for instrumented builds, not for release.
-There was no security review for this library.
diff --git a/third_party/libc++abi/libc++abi.gyp b/third_party/libc++abi/libc++abi.gyp
deleted file mode 100644
index 6e56ff9..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': [
- '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',
- ],
- 'include_dirs': [
- 'trunk/include',
- '../libc++/trunk/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': [
- 'trunk/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',
- ]
- },
- ]
-}