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

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/strip/main.c ('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) 2011 Google Inc. All rights reserved.
Mark Mentovai 2013/09/13 16:09:05 2013
Nico 2013/09/13 21:41:07 Done.
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 'DEPLOYMENT_POSTPROCESSING': 'YES',
11 'STRIP_INSTALLED_PRODUCT': 'YES',
12 },
13 },
14 'targets': [
15 {
16 'target_name': 'single_dylib',
17 'type': 'shared_library',
18 'sources': [ 'file.c', ],
Mark Mentovai 2013/09/13 16:09:05 I don’t see file.c in your CL. I assumed you were
Nico 2013/09/13 21:41:07 It's already there, from the test.gyp test in the
19 },
20 {
21 'target_name': 'single_so',
22 'type': 'loadable_module',
23 'sources': [ 'file.c', ],
24 },
25 {
26 'target_name': 'single_exe',
27 'type': 'executable',
28 'sources': [ 'main.c', ],
29 },
30
31 {
32 'target_name': 'bundle_dylib',
33 'type': 'shared_library',
34 'mac_bundle': '1',
35 'sources': [ 'file.c', ],
36 },
37 {
38 'target_name': 'bundle_so',
39 'type': 'loadable_module',
40 'mac_bundle': '1',
41 'sources': [ 'file.c', ],
42 },
43 {
44 'target_name': 'bundle_exe',
45 'type': 'executable',
46 'mac_bundle': '1',
47 'sources': [ 'main.c', ],
48 },
49 ],
Mark Mentovai 2013/09/13 16:09:05 Do you want to test a few targets with STRIP_STYLE
Mark Mentovai 2013/09/13 21:31:32 I wrote:
Nico 2013/09/13 21:41:07 test.gyp in this folder already covers explicit ST
50 }
51
Mark Mentovai 2013/09/13 16:09:05 blank line
Mark Mentovai 2013/09/13 21:31:32 I wrote:
Nico 2013/09/13 21:41:07 Done.
OLDNEW
« test/mac/strip/main.c ('K') | « test/mac/strip/main.c ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698