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

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

Issue 561063002: Reland of -fno-exceptions only on .cc files https://codereview.chromium.org/560873003/ with fix for… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: and another Created 6 years, 3 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++/libc++.gyp ('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 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 'dependencies=': [], 10 'dependencies=': [],
(...skipping 19 matching lines...) Expand all
30 'include_dirs': [ 30 'include_dirs': [
31 'trunk/include', 31 'trunk/include',
32 '../libc++/trunk/include' 32 '../libc++/trunk/include'
33 ], 33 ],
34 'cflags': [ 34 'cflags': [
35 '-fstrict-aliasing', 35 '-fstrict-aliasing',
36 '-nostdinc++', 36 '-nostdinc++',
37 '-std=c++11', 37 '-std=c++11',
38 ], 38 ],
39 'cflags_cc!': [ 39 'cflags_cc!': [
40 '-fno-exceptions',
40 '-fno-rtti', 41 '-fno-rtti',
41 ], 42 ],
42 'cflags!': [ 43 'cflags!': [
43 '-fno-exceptions',
44 '-fvisibility=hidden', 44 '-fvisibility=hidden',
45 ], 45 ],
46 'ldflags': [ 46 'ldflags': [
47 '-nodefaultlibs', 47 '-nodefaultlibs',
48 ], 48 ],
49 'ldflags!': [ 49 'ldflags!': [
50 '-pthread', 50 '-pthread',
51 ], 51 ],
52 'libraries': [ 52 'libraries': [
53 '-lc', 53 '-lc',
54 '-lgcc_s', 54 '-lgcc_s',
55 '-lpthread', 55 '-lpthread',
56 '-lrt', 56 '-lrt',
57 ] 57 ]
58 }, 58 },
59 ] 59 ]
60 } 60 }
OLDNEW
« no previous file with comments | « third_party/libc++/libc++.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698