|
OLD | NEW |
---|---|
(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.
| |
OLD | NEW |