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

Side by Side Diff: test/mac/strip/test-defaults.gyp

Issue 23600042: ninja&make/mac: Only pass -x for loadable_modules. (Closed) Base URL: http://gyp.googlecode.com/svn/trunk/
Patch Set: Created 7 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 | Annotate | Revision Log
« test/mac/gyptest-strip-default.py ('K') | « test/mac/strip/main.c ('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')
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 # Copyright (c) 2013 Google Inc. 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 'make_global_settings': [
6 ['CC', '/usr/bin/clang'],
7 ],
8 'target_defaults': {
9 'xcode_settings': {
10 'GCC_VERSION': 'com.apple.compilers.llvm.clang.1_0',
11 'DEPLOYMENT_POSTPROCESSING': 'YES',
12 'STRIP_INSTALLED_PRODUCT': 'YES',
13 },
14 },
15 'targets': [
16 {
17 'target_name': 'single_dylib',
18 'type': 'shared_library',
19 'sources': [ 'file.c', ],
20 },
21 {
22 'target_name': 'single_so',
23 'type': 'loadable_module',
24 'sources': [ 'file.c', ],
25 },
26 {
27 'target_name': 'single_exe',
28 'type': 'executable',
29 'sources': [ 'main.c', ],
30 },
31
32 {
33 'target_name': 'bundle_dylib',
34 'type': 'shared_library',
35 'mac_bundle': '1',
36 'sources': [ 'file.c', ],
37 },
38 {
39 'target_name': 'bundle_so',
40 'type': 'loadable_module',
41 'mac_bundle': '1',
42 'sources': [ 'file.c', ],
43 },
44 {
45 'target_name': 'bundle_exe',
46 'type': 'executable',
47 'mac_bundle': '1',
48 'sources': [ 'main.c', ],
49 },
50 ],
51 }
OLDNEW
« test/mac/gyptest-strip-default.py ('K') | « test/mac/strip/main.c ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698