| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 import("//build/config/ios/rules.gni") | 5 import("//build/config/ios/rules.gni") |
| 6 import("//build/config/mac/base_rules.gni") | 6 import("//build/config/mac/base_rules.gni") |
| 7 import("//build/mac/tweak_info_plist.gni") | 7 import("//build/mac/tweak_info_plist.gni") |
| 8 import("//ios/build/chrome_build.gni") | 8 import("//ios/build/chrome_build.gni") |
| 9 import("//ios/public/provider/chrome/browser/build_config.gni") | 9 import("//ios/public/provider/chrome/browser/build_config.gni") |
| 10 | 10 |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 sources = [ | 71 sources = [ |
| 72 "main.mm", | 72 "main.mm", |
| 73 ] | 73 ] |
| 74 | 74 |
| 75 deps = [ | 75 deps = [ |
| 76 ":app", | 76 ":app", |
| 77 "//base", | 77 "//base", |
| 78 "//components/crash/core/common", | 78 "//components/crash/core/common", |
| 79 "//ios/chrome/app:app_internal", | 79 "//ios/chrome/app:app_internal", |
| 80 "//ios/chrome/app/startup", | 80 "//ios/chrome/app/startup", |
| 81 "//ios/chrome/app/startup:startup_basic", |
| 81 "//ios/chrome/browser", | 82 "//ios/chrome/browser", |
| 82 "//ios/chrome/browser:browser_internal", | 83 "//ios/chrome/browser:browser_internal", |
| 83 "//ios/chrome/browser/crash_report", | 84 "//ios/chrome/browser/crash_report", |
| 84 "//ios/chrome/common", | 85 "//ios/chrome/common", |
| 85 "//third_party/google_toolbox_for_mac", | 86 "//third_party/google_toolbox_for_mac", |
| 86 ] | 87 ] |
| 87 | 88 |
| 88 configs += [ "//build/config/compiler:enable_arc" ] | 89 configs += [ "//build/config/compiler:enable_arc" ] |
| 89 } | 90 } |
| 90 | 91 |
| (...skipping 19 matching lines...) Expand all Loading... |
| 110 "app_delegate.mm", | 111 "app_delegate.mm", |
| 111 ] | 112 ] |
| 112 | 113 |
| 113 configs += [ "//build/config/compiler:enable_arc" ] | 114 configs += [ "//build/config/compiler:enable_arc" ] |
| 114 | 115 |
| 115 deps = [ | 116 deps = [ |
| 116 ":application_state", | 117 ":application_state", |
| 117 "//ios/clean/chrome/app/steps", | 118 "//ios/clean/chrome/app/steps", |
| 118 ] | 119 ] |
| 119 } | 120 } |
| OLD | NEW |