OLD | NEW |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 The Chromium Authors. 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 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'mozilla', | 8 'target_name': 'mozilla', |
9 'type': '<(component)', | 9 'type': '<(component)', |
10 'sources': [ | 10 'sources': [ |
(...skipping 13 matching lines...) Expand all Loading... |
24 ], | 24 ], |
25 'defines': [ | 25 'defines': [ |
26 'MOZILLA_IMPLEMENTATION', | 26 'MOZILLA_IMPLEMENTATION', |
27 ], | 27 ], |
28 'link_settings': { | 28 'link_settings': { |
29 'libraries': [ | 29 'libraries': [ |
30 '$(SDKROOT)/System/Library/Frameworks/AppKit.framework', | 30 '$(SDKROOT)/System/Library/Frameworks/AppKit.framework', |
31 ], | 31 ], |
32 }, | 32 }, |
33 'dependencies': [ | 33 'dependencies': [ |
| 34 '../../base/base.gyp:base', |
34 '../../url/url.gyp:url_lib', | 35 '../../url/url.gyp:url_lib', |
35 ], | 36 ], |
36 'conditions': [ | 37 'conditions': [ |
37 ['component=="shared_library"', | 38 ['component=="shared_library"', |
38 { | 39 { |
39 # Needed to link to Obj-C static libraries. | 40 # Needed to link to Obj-C static libraries. |
40 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-ObjC']}, | 41 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-ObjC']}, |
41 } | 42 } |
42 ], | 43 ], |
43 ], | 44 ], |
44 }, | 45 }, |
45 ], | 46 ], |
46 } | 47 } |
OLD | NEW |