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

Side by Side Diff: third_party/libcxxabi/libcxxabi.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, 1 month 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': 'libcxxabi',
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 '../libcxx/include'
36 ],
37 'cflags': [
38 '-g', '-O3', '-fPIC',
39 '-std=c++11',
40 '-fstrict-aliasing',
41 '-Wstrict-aliasing=2', '-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 ],
46 'link_settings': {
47 'cflags!': [
48 '-fno-exceptions',
49 ],
50 },
51 'all_dependent_settings': {
52 'include_dirs': [
53 'include',
54 ],
55 },
56 'cflags_cc!': [
57 '-fno-rtti',
58 ],
59 'ldflags': [
60 '-o libc++abi.so.1.0',
61 '-shared',
62 '-nodefaultlibs',
63 '-Wl,-soname,libc++abi.so.1',
64 ],
65 'libraries': [
66 '-lrt',
67 '-lc',
68 ]
69 },
70 ]
71 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698