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

Unified Diff: trunk/src/third_party/libc++/libc++.gyp

Issue 110333004: Revert 240682 "Add libc++ and libc++abi to third-party." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 7 years 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 | « trunk/src/third_party/libc++/README.chromium ('k') | trunk/src/third_party/libc++abi/LICENSE.TXT » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: trunk/src/third_party/libc++/libc++.gyp
===================================================================
--- trunk/src/third_party/libc++/libc++.gyp (revision 240705)
+++ trunk/src/third_party/libc++/libc++.gyp (working copy)
@@ -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': [
- 'src/algorithm.cpp',
- 'src/bind.cpp',
- 'src/chrono.cpp',
- 'src/condition_variable.cpp',
- 'src/debug.cpp',
- 'src/exception.cpp',
- 'src/future.cpp',
- 'src/hash.cpp',
- 'src/ios.cpp',
- 'src/iostream.cpp',
- 'src/locale.cpp',
- 'src/memory.cpp',
- 'src/mutex.cpp',
- 'src/new.cpp',
- 'src/optional.cpp',
- 'src/random.cpp',
- 'src/regex.cpp',
- 'src/shared_mutex.cpp',
- 'src/stdexcept.cpp',
- 'src/string.cpp',
- 'src/strstream.cpp',
- 'src/system_error.cpp',
- 'src/thread.cpp',
- 'src/typeinfo.cpp',
- 'src/utility.cpp',
- 'src/valarray.cpp',
- ],
- 'include_dirs': [
- 'include',
- '../libc++abi/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': [
- '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',
- ],
- },
- ]
-}
« no previous file with comments | « trunk/src/third_party/libc++/README.chromium ('k') | trunk/src/third_party/libc++abi/LICENSE.TXT » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698