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

Side by Side Diff: third_party/libc++abi/libc++abi.gyp

Issue 75213003: Add libc++ and libc++abi to third-party. (Closed) Base URL: https://src.chromium.org/chrome/trunk/src/
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 unified diff | Download patch
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 {
6 'targets': [
7 {
8 'target_name': 'libc++abi',
9 'type': 'shared_library',
10 'variables': {
11 'prune_self_dependency': 1,
12 },
13 'dependencies=': [],
14 'sources': [
15 'src/abort_message.cpp',
16 'src/cxa_aux_runtime.cpp',
17 'src/cxa_default_handlers.cpp',
18 'src/cxa_demangle.cpp',
19 'src/cxa_exception.cpp',
20 'src/cxa_exception_storage.cpp',
21 'src/cxa_guard.cpp',
22 'src/cxa_handlers.cpp',
23 'src/cxa_new_delete.cpp',
24 'src/cxa_personality.cpp',
25 'src/cxa_unexpected.cpp',
26 'src/cxa_vector.cpp',
27 'src/cxa_virtual.cpp',
28 'src/exception.cpp',
29 'src/private_typeinfo.cpp',
30 'src/stdexcept.cpp',
31 'src/typeinfo.cpp',
32 ],
33 'include_dirs': [
34 'include',
35 '../libc++/include'
36 ],
37 'cflags': [
38 '-g', '-O3', '-fPIC',
39 '-std=c++11',
40 '-fstrict-aliasing',
41 '-Wsign-conversion', '-Wshadow', '-Wconversion', '-Wunused-variable',
42 '-Wmissing-field-initializers', '-Wchar-subscripts', '-Wmismatched-tags' ,
43 '-Wmissing-braces', '-Wshorten-64-to-32', '-Wsign-compare', '-Wstrict-al iasing=2',
44 '-Wstrict-overflow=4', '-Wunused-parameter', '-Wnewline-eof',
45 '-nostdinc++',
46 ],
47 'all_dependent_settings': {
48 'include_dirs': [
49 'include',
50 ],
51 'cflags_cc': [
52 '-nostdinc++',
53 ],
54 'ldflags': [
55 '-L<(PRODUCT_DIR)/lib/',
56 ],
57 },
58 'cflags_cc!': [
59 '-fno-rtti',
60 ],
61 'cflags!': [
62 '-fno-exceptions',
63 '-fvisibility=hidden',
64 ],
65 'ldflags': [
66 '-nodefaultlibs',
67 ],
68 'libraries': [
69 '-lrt',
70 '-lc',
71 '-lgcc_s',
72 ]
73 },
74 ]
75 }
OLDNEW
« no previous file with comments | « third_party/libc++abi/include/unwind.h ('k') | third_party/libc++abi/src/Unwind/AddressSpace.hpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698