Index: test/mac/strip/test-defaults.gyp |
=================================================================== |
--- test/mac/strip/test-defaults.gyp (revision 0) |
+++ test/mac/strip/test-defaults.gyp (revision 0) |
@@ -0,0 +1,51 @@ |
+# 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.
|
+# Use of this source code is governed by a BSD-style license that can be |
+# found in the LICENSE file. |
+{ |
+ 'make_global_settings': [ |
+ ['CC', '/usr/bin/clang'], |
+ ], |
+ 'target_defaults': { |
+ 'xcode_settings': { |
+ 'DEPLOYMENT_POSTPROCESSING': 'YES', |
+ 'STRIP_INSTALLED_PRODUCT': 'YES', |
+ }, |
+ }, |
+ 'targets': [ |
+ { |
+ 'target_name': 'single_dylib', |
+ 'type': 'shared_library', |
+ '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
|
+ }, |
+ { |
+ 'target_name': 'single_so', |
+ 'type': 'loadable_module', |
+ 'sources': [ 'file.c', ], |
+ }, |
+ { |
+ 'target_name': 'single_exe', |
+ 'type': 'executable', |
+ 'sources': [ 'main.c', ], |
+ }, |
+ |
+ { |
+ 'target_name': 'bundle_dylib', |
+ 'type': 'shared_library', |
+ 'mac_bundle': '1', |
+ 'sources': [ 'file.c', ], |
+ }, |
+ { |
+ 'target_name': 'bundle_so', |
+ 'type': 'loadable_module', |
+ 'mac_bundle': '1', |
+ 'sources': [ 'file.c', ], |
+ }, |
+ { |
+ 'target_name': 'bundle_exe', |
+ 'type': 'executable', |
+ 'mac_bundle': '1', |
+ 'sources': [ 'main.c', ], |
+ }, |
+ ], |
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
|
+} |
+ |
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.
|
Property changes on: test/mac/strip/test-defaults.gyp |
___________________________________________________________________ |
Added: svn:eol-style |
+ LF |