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

Side by Side Diff: test/module/src/module.gyp

Issue 23789004: ninja&make/mac: Give loadable_modules type MH_BUNDLE. (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
OLDNEW
1 # Copyright (c) 2009 Google Inc. All rights reserved. 1 # Copyright (c) 2009 Google Inc. 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 'target_defaults': { 6 'target_defaults': {
7 'conditions': [ 7 'conditions': [
8 ['OS=="win"', { 8 ['OS=="win"', {
9 'defines': ['PLATFORM_WIN'], 9 'defines': ['PLATFORM_WIN'],
10 }], 10 }],
(...skipping 18 matching lines...) Expand all
29 ], 29 ],
30 'sources': [ 30 'sources': [
31 'program.c', 31 'program.c',
32 ], 32 ],
33 }, 33 },
34 { 34 {
35 'target_name': 'lib1', 35 'target_name': 'lib1',
36 'type': 'loadable_module', 36 'type': 'loadable_module',
37 'product_name': 'lib1', 37 'product_name': 'lib1',
38 'product_prefix': '', 38 'product_prefix': '',
39 'xcode_settings': {'OTHER_LDFLAGS': ['-dynamiclib'], 'MACH_O_TYPE': ''},
Nico 2013/09/05 04:36:21 Not sure what this was for. mmoss added it in http
Michael Moss 2013/09/05 15:00:16 I don't know much about xcode, so I probably eithe
40 'sources': [ 39 'sources': [
41 'lib1.c', 40 'lib1.c',
42 ], 41 ],
43 }, 42 },
44 { 43 {
45 'target_name': 'lib2', 44 'target_name': 'lib2',
46 'product_name': 'lib2', 45 'product_name': 'lib2',
47 'product_prefix': '', 46 'product_prefix': '',
48 'type': 'loadable_module', 47 'type': 'loadable_module',
49 'xcode_settings': {'OTHER_LDFLAGS': ['-dynamiclib'], 'MACH_O_TYPE': ''},
50 'sources': [ 48 'sources': [
51 'lib2.c', 49 'lib2.c',
52 ], 50 ],
53 }, 51 },
54 ], 52 ],
55 } 53 }
OLDNEW
« pylib/gyp/xcode_emulation.py ('K') | « test/mac/gyptest-loadable-module.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698