| 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 # GN version: //ios/chrome/app | 11 # GN version: //ios/chrome/app |
| 12 'target_name': 'ios_chrome_app', | 12 'target_name': 'ios_chrome_app', |
| 13 'type': 'static_library', | 13 'type': 'static_library', |
| 14 'include_dirs': [ | 14 'include_dirs': [ |
| 15 '../..', | 15 '../..', |
| 16 ], | 16 ], |
| 17 'dependencies': [ | 17 'dependencies': [ |
| 18 '../../base/base.gyp:base', | 18 '../../base/base.gyp:base', |
| 19 'ios_chrome_browser', | 19 'ios_chrome_browser', |
| 20 ], | 20 ], |
| 21 'link_settings': { | 21 'link_settings': { |
| 22 'libraries': [ | 22 'libraries': [ |
| 23 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', | 23 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', |
| 24 '$(SDKROOT)/System/Library/Frameworks/UIKit.framework', | 24 '$(SDKROOT)/System/Library/Frameworks/UIKit.framework', |
| 25 ], | 25 ], |
| 26 }, | 26 }, |
| 27 'sources': [ | 27 'sources': [ |
| 28 'app/UIApplication+ExitsOnSuspend.h', |
| 29 'app/UIApplication+ExitsOnSuspend.mm', |
| 28 'app/application_delegate/memory_warning_helper.h', | 30 'app/application_delegate/memory_warning_helper.h', |
| 29 'app/application_delegate/memory_warning_helper.mm', | 31 'app/application_delegate/memory_warning_helper.mm', |
| 30 'app/deferred_initialization_runner.h', | 32 'app/deferred_initialization_runner.h', |
| 31 'app/deferred_initialization_runner.mm', | 33 'app/deferred_initialization_runner.mm', |
| 32 'app/safe_mode_crashing_modules_config.h', | 34 'app/safe_mode_crashing_modules_config.h', |
| 33 'app/safe_mode_crashing_modules_config.mm', | 35 'app/safe_mode_crashing_modules_config.mm', |
| 34 'app/safe_mode_util.cc', | 36 'app/safe_mode_util.cc', |
| 35 'app/safe_mode_util.h', | 37 'app/safe_mode_util.h', |
| 36 ], | 38 ], |
| 37 }, | 39 }, |
| (...skipping 845 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 883 '../../components/components.gyp:omnibox_browser', | 885 '../../components/components.gyp:omnibox_browser', |
| 884 '../../components/components.gyp:rlz', | 886 '../../components/components.gyp:rlz', |
| 885 '../../components/components.gyp:search_engines', | 887 '../../components/components.gyp:search_engines', |
| 886 '../../rlz/rlz.gyp:rlz_lib', | 888 '../../rlz/rlz.gyp:rlz_lib', |
| 887 ], | 889 ], |
| 888 }, | 890 }, |
| 889 ], | 891 ], |
| 890 }], | 892 }], |
| 891 ], | 893 ], |
| 892 } | 894 } |
| OLD | NEW |