OLD | NEW |
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 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': 'shell_dialogs', | 8 'target_name': 'shell_dialogs', |
9 'type': '<(component)', | 9 'type': '<(component)', |
10 'dependencies': [ | 10 'dependencies': [ |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 'libraries': [ | 68 'libraries': [ |
69 '-ljnigraphics', | 69 '-ljnigraphics', |
70 ], | 70 ], |
71 }, | 71 }, |
72 }], | 72 }], |
73 ['OS=="android" and android_webview_build==0', { | 73 ['OS=="android" and android_webview_build==0', { |
74 'dependencies': [ | 74 'dependencies': [ |
75 'ui_java', | 75 'ui_java', |
76 ], | 76 ], |
77 }], | 77 }], |
| 78 ['OS=="mac"', { |
| 79 'link_settings': { |
| 80 'libraries': [ |
| 81 '$(SDKROOT)/System/Library/Frameworks/AppKit.framework', |
| 82 '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework', |
| 83 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', |
| 84 ], |
| 85 }, |
| 86 }], |
78 ], | 87 ], |
79 }, # target_name: shell_dialogs | 88 }, # target_name: shell_dialogs |
80 ], | 89 ], |
81 } | 90 } |
OLD | NEW |