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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 sources = [ | 58 sources = [ |
59 "main.mm", | 59 "main.mm", |
60 ] | 60 ] |
61 | 61 |
62 deps = [ | 62 deps = [ |
63 ":app", | 63 ":app", |
64 "//base", | 64 "//base", |
65 "//components/crash/core/common", | 65 "//components/crash/core/common", |
66 "//ios/chrome/app:app_internal", | 66 "//ios/chrome/app:app_internal", |
67 "//ios/chrome/app/startup", | 67 "//ios/chrome/app/startup", |
| 68 "//ios/chrome/app/startup:startup_basic", |
68 "//ios/chrome/browser", | 69 "//ios/chrome/browser", |
69 "//ios/chrome/browser:browser_internal", | 70 "//ios/chrome/browser:browser_internal", |
70 "//ios/chrome/browser/crash_report", | 71 "//ios/chrome/browser/crash_report", |
71 "//ios/chrome/common", | 72 "//ios/chrome/common", |
72 "//third_party/google_toolbox_for_mac", | 73 "//third_party/google_toolbox_for_mac", |
73 ] | 74 ] |
74 | 75 |
75 configs += [ "//build/config/compiler:enable_arc" ] | 76 configs += [ "//build/config/compiler:enable_arc" ] |
76 } | 77 } |
77 | 78 |
(...skipping 19 matching lines...) Expand all Loading... |
97 "app_delegate.mm", | 98 "app_delegate.mm", |
98 ] | 99 ] |
99 | 100 |
100 configs += [ "//build/config/compiler:enable_arc" ] | 101 configs += [ "//build/config/compiler:enable_arc" ] |
101 | 102 |
102 deps = [ | 103 deps = [ |
103 ":application_state", | 104 ":application_state", |
104 "//ios/clean/chrome/app/steps", | 105 "//ios/clean/chrome/app/steps", |
105 ] | 106 ] |
106 } | 107 } |
OLD | NEW |