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

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

Issue 1559483002: Sanitizers: Roll in 16 months of libcxx and libcxxabi changes. (Closed) Base URL: https://chromium.googlesource.com/chromium/buildtools.git@master
Patch Set: buildfiles Created 4 years, 11 months 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
« no previous file with comments | « third_party/libc++abi/BUILD.gn ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'libc++abi', 8 'target_name': 'libc++abi',
9 'type': 'static_library', 9 'type': 'static_library',
10 'toolsets': ['host', 'target'], 10 'toolsets': ['host', 'target'],
11 'dependencies=': [], 11 'dependencies=': [],
12 'sources': [ 12 'sources': [
13 'trunk/src/abort_message.cpp', 13 'trunk/src/abort_message.cpp',
14 'trunk/src/cxa_aux_runtime.cpp', 14 'trunk/src/cxa_aux_runtime.cpp',
15 'trunk/src/cxa_default_handlers.cpp', 15 'trunk/src/cxa_default_handlers.cpp',
16 'trunk/src/cxa_demangle.cpp', 16 'trunk/src/cxa_demangle.cpp',
17 'trunk/src/cxa_exception.cpp', 17 'trunk/src/cxa_exception.cpp',
18 'trunk/src/cxa_exception_storage.cpp', 18 'trunk/src/cxa_exception_storage.cpp',
19 'trunk/src/cxa_guard.cpp', 19 'trunk/src/cxa_guard.cpp',
20 'trunk/src/cxa_handlers.cpp', 20 'trunk/src/cxa_handlers.cpp',
21 'trunk/src/cxa_new_delete.cpp', 21 'trunk/src/cxa_new_delete.cpp',
22 'trunk/src/cxa_personality.cpp', 22 'trunk/src/cxa_personality.cpp',
23 'trunk/src/cxa_thread_atexit.cpp',
23 'trunk/src/cxa_unexpected.cpp', 24 'trunk/src/cxa_unexpected.cpp',
24 'trunk/src/cxa_vector.cpp', 25 'trunk/src/cxa_vector.cpp',
25 'trunk/src/cxa_virtual.cpp', 26 'trunk/src/cxa_virtual.cpp',
26 'trunk/src/exception.cpp', 27 'trunk/src/exception.cpp',
27 'trunk/src/private_typeinfo.cpp', 28 'trunk/src/private_typeinfo.cpp',
28 'trunk/src/stdexcept.cpp', 29 'trunk/src/stdexcept.cpp',
29 'trunk/src/typeinfo.cpp', 30 'trunk/src/typeinfo.cpp',
30 ], 31 ],
31 'include_dirs': [ 32 'include_dirs': [
32 'trunk/include', 33 'trunk/include',
33 '../libc++/trunk/include' 34 '../libc++/trunk/include'
34 ], 35 ],
35 'cflags': [ 36 'cflags': [
36 '-fPIC', 37 '-fPIC',
37 '-fstrict-aliasing', 38 '-fstrict-aliasing',
38 '-nostdinc++', 39 '-nostdinc++',
39 '-pthread', 40 '-pthread',
40 '-std=c++11', 41 '-std=c++11',
41 ], 42 ],
42 'cflags_cc!': [ 43 'cflags_cc!': [
43 '-fno-exceptions', 44 '-fno-exceptions',
44 '-fno-rtti', 45 '-fno-rtti',
45 ], 46 ],
46 'cflags!': [ 47 'cflags!': [
47 '-fvisibility=hidden', 48 '-fvisibility=hidden',
48 ], 49 ],
49 }, 50 },
50 ] 51 ]
51 } 52 }
OLDNEW
« no previous file with comments | « third_party/libc++abi/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698