| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 }, | 8 }, |
| 9 'targets': [ | 9 'targets': [ |
| 10 { | 10 { |
| 11 'target_name': 'ios_chrome_app', | 11 'target_name': 'ios_chrome_app', |
| 12 'type': 'static_library', | 12 'type': 'static_library', |
| 13 'include_dirs': [ | 13 'include_dirs': [ |
| 14 '../..', | 14 '../..', |
| 15 ], | 15 ], |
| 16 'dependencies': [ | 16 'dependencies': [ |
| 17 '../../base/base.gyp:base', | 17 '../../base/base.gyp:base', |
| 18 'ios_chrome_browser', | 18 'ios_chrome_browser', |
| 19 ], | 19 ], |
| 20 'link_settings': { | 20 'link_settings': { |
| 21 'libraries': [ | 21 'libraries': [ |
| 22 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', | 22 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', |
| 23 '$(SDKROOT)/System/Library/Frameworks/UIKit.framework', |
| 23 ], | 24 ], |
| 24 }, | 25 }, |
| 25 'sources': [ | 26 'sources': [ |
| 26 'app/UIApplication+ExitsOnSuspend.h', | 27 'app/UIApplication+ExitsOnSuspend.h', |
| 27 'app/UIApplication+ExitsOnSuspend.mm', | 28 'app/UIApplication+ExitsOnSuspend.mm', |
| 28 'app/deferred_initialization_runner.h', | 29 'app/deferred_initialization_runner.h', |
| 29 'app/deferred_initialization_runner.mm', | 30 'app/deferred_initialization_runner.mm', |
| 30 'app/safe_mode_crashing_modules_config.h', | 31 'app/safe_mode_crashing_modules_config.h', |
| 31 'app/safe_mode_crashing_modules_config.mm', | 32 'app/safe_mode_crashing_modules_config.mm', |
| 32 'app/safe_mode_util.cc', | 33 'app/safe_mode_util.cc', |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 'browser/browser_state/browser_state_keyed_service_factories.mm', | 113 'browser/browser_state/browser_state_keyed_service_factories.mm', |
| 113 'browser/browser_state/browser_state_otr_helper.cc', | 114 'browser/browser_state/browser_state_otr_helper.cc', |
| 114 'browser/browser_state/browser_state_otr_helper.h', | 115 'browser/browser_state/browser_state_otr_helper.h', |
| 115 'browser/browsing_data_change_listening.h', | 116 'browser/browsing_data_change_listening.h', |
| 116 'browser/chrome_paths.h', | 117 'browser/chrome_paths.h', |
| 117 'browser/chrome_paths.mm', | 118 'browser/chrome_paths.mm', |
| 118 'browser/chrome_switches.cc', | 119 'browser/chrome_switches.cc', |
| 119 'browser/chrome_switches.h', | 120 'browser/chrome_switches.h', |
| 120 'browser/chrome_url_constants.cc', | 121 'browser/chrome_url_constants.cc', |
| 121 'browser/chrome_url_constants.h', | 122 'browser/chrome_url_constants.h', |
| 123 'browser/chrome_url_util.h', |
| 124 'browser/chrome_url_util.mm', |
| 122 'browser/crash_report/crash_report_background_uploader.h', | 125 'browser/crash_report/crash_report_background_uploader.h', |
| 123 'browser/crash_report/crash_report_background_uploader.mm', | 126 'browser/crash_report/crash_report_background_uploader.mm', |
| 124 'browser/dom_distiller/distiller_viewer.cc', | 127 'browser/dom_distiller/distiller_viewer.cc', |
| 125 'browser/dom_distiller/distiller_viewer.h', | 128 'browser/dom_distiller/distiller_viewer.h', |
| 126 'browser/dom_distiller/dom_distiller_service_factory.cc', | 129 'browser/dom_distiller/dom_distiller_service_factory.cc', |
| 127 'browser/dom_distiller/dom_distiller_service_factory.h', | 130 'browser/dom_distiller/dom_distiller_service_factory.h', |
| 128 'browser/experimental_flags.h', | 131 'browser/experimental_flags.h', |
| 129 'browser/experimental_flags.mm', | 132 'browser/experimental_flags.mm', |
| 130 'browser/find_in_page/find_in_page_controller.h', | 133 'browser/find_in_page/find_in_page_controller.h', |
| 131 'browser/find_in_page/find_in_page_controller.mm', | 134 'browser/find_in_page/find_in_page_controller.mm', |
| (...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 302 '../../ios/web/js_compile.gypi', | 305 '../../ios/web/js_compile.gypi', |
| 303 ], | 306 ], |
| 304 'link_settings': { | 307 'link_settings': { |
| 305 'mac_bundle_resources': [ | 308 'mac_bundle_resources': [ |
| 306 '<(SHARED_INTERMEDIATE_DIR)/find_in_page.js', | 309 '<(SHARED_INTERMEDIATE_DIR)/find_in_page.js', |
| 307 ], | 310 ], |
| 308 }, | 311 }, |
| 309 }, | 312 }, |
| 310 ], | 313 ], |
| 311 } | 314 } |
| OLD | NEW |