| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 # This gyp file creates a fake target that is used to generate a minimal Xcode | 5 # This gyp file creates a fake target that is used to generate a minimal Xcode |
| 6 # project, useful for editing XIB files. | 6 # project, useful for editing XIB files. |
| 7 # | 7 # |
| 8 # The sole target is called "chrome_nibs" and its sources are the minimum | 8 # The sole target is called "chrome_nibs" and its sources are the minimum |
| 9 # dependency set for all of the classes referred to by XIB files. If you are | 9 # dependency set for all of the classes referred to by XIB files. If you are |
| 10 # editing or adding a new XIB file, ensure that any classes to which you refer | 10 # editing or adding a new XIB file, ensure that any classes to which you refer |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 'target_defaults': { | 27 'target_defaults': { |
| 28 'include_dirs': [ | 28 'include_dirs': [ |
| 29 '..', | 29 '..', |
| 30 ], | 30 ], |
| 31 }, | 31 }, |
| 32 'targets': [ | 32 'targets': [ |
| 33 { | 33 { |
| 34 'target_name': 'chrome_nibs', | 34 'target_name': 'chrome_nibs', |
| 35 'type': 'executable', | 35 'type': 'executable', |
| 36 'mac_bundle': 1, | 36 'mac_bundle': 1, |
| 37 'dependencies': [ |
| 38 '../third_party/google_toolbox_for_mac/google_toolbox_for_mac.gyp:google
_toolbox_for_mac', |
| 39 ], |
| 37 'sources': [ | 40 'sources': [ |
| 38 '../third_party/GTM/AppKit/GTMUILocalizer.h', | |
| 39 '../third_party/GTM/AppKit/GTMUILocalizer.mm', | |
| 40 '../third_party/GTM/AppKit/GTMUILocalizerAndLayoutTweaker.h', | |
| 41 '../third_party/GTM/AppKit/GTMUILocalizerAndLayoutTweaker.mm', | |
| 42 '../ui/base/cocoa/base_view.h', | 41 '../ui/base/cocoa/base_view.h', |
| 43 '../ui/base/cocoa/base_view.mm', | 42 '../ui/base/cocoa/base_view.mm', |
| 44 '../ui/base/cocoa/controls/hyperlink_button_cell.h', | 43 '../ui/base/cocoa/controls/hyperlink_button_cell.h', |
| 45 '../ui/base/cocoa/controls/hyperlink_button_cell.mm', | 44 '../ui/base/cocoa/controls/hyperlink_button_cell.mm', |
| 46 '../ui/base/cocoa/hover_button.h', | 45 '../ui/base/cocoa/hover_button.h', |
| 47 '../ui/base/cocoa/hover_button.mm', | 46 '../ui/base/cocoa/hover_button.mm', |
| 48 '../ui/base/cocoa/hover_image_button.h', | 47 '../ui/base/cocoa/hover_image_button.h', |
| 49 '../ui/base/cocoa/hover_image_button.mm', | 48 '../ui/base/cocoa/hover_image_button.mm', |
| 50 '../ui/base/cocoa/menu_controller.h', | 49 '../ui/base/cocoa/menu_controller.h', |
| 51 '../ui/base/cocoa/menu_controller.mm', | 50 '../ui/base/cocoa/menu_controller.mm', |
| (...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 247 'browser/ui/cocoa/panels/panel_titlebar_view_cocoa.mm', | 246 'browser/ui/cocoa/panels/panel_titlebar_view_cocoa.mm', |
| 248 'browser/ui/cocoa/panels/panel_window_controller_cocoa.h', | 247 'browser/ui/cocoa/panels/panel_window_controller_cocoa.h', |
| 249 'browser/ui/cocoa/panels/panel_window_controller_cocoa.mm', | 248 'browser/ui/cocoa/panels/panel_window_controller_cocoa.mm', |
| 250 ], | 249 ], |
| 251 'mac_bundle_resources': [ | 250 'mac_bundle_resources': [ |
| 252 '<@(mac_all_xibs)', | 251 '<@(mac_all_xibs)', |
| 253 ], | 252 ], |
| 254 }, # target chrome_xibs | 253 }, # target chrome_xibs |
| 255 ], # targets | 254 ], # targets |
| 256 } | 255 } |
| OLD | NEW |