| 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 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 "//components/signin/core/browser", | 152 "//components/signin/core/browser", |
| 153 "//components/suggestions", | 153 "//components/suggestions", |
| 154 "//components/sync", | 154 "//components/sync", |
| 155 "//components/url_formatter", | 155 "//components/url_formatter", |
| 156 "//components/web_resource", | 156 "//components/web_resource", |
| 157 "//ios/chrome/app/application_delegate", | 157 "//ios/chrome/app/application_delegate", |
| 158 "//ios/chrome/app/application_delegate:application_delegate_internal", | 158 "//ios/chrome/app/application_delegate:application_delegate_internal", |
| 159 "//ios/chrome/app/safe_mode", | 159 "//ios/chrome/app/safe_mode", |
| 160 "//ios/chrome/app/spotlight", | 160 "//ios/chrome/app/spotlight", |
| 161 "//ios/chrome/app/startup", | 161 "//ios/chrome/app/startup", |
| 162 "//ios/chrome/app/startup:startup_basic", |
| 162 "//ios/chrome/app/strings", | 163 "//ios/chrome/app/strings", |
| 163 "//ios/chrome/browser", | 164 "//ios/chrome/browser", |
| 164 "//ios/chrome/browser:browser_internal", | 165 "//ios/chrome/browser:browser_internal", |
| 165 "//ios/chrome/browser/bookmarks", | 166 "//ios/chrome/browser/bookmarks", |
| 166 "//ios/chrome/browser/browser_state", | 167 "//ios/chrome/browser/browser_state", |
| 167 "//ios/chrome/browser/browser_state:browser_state_impl", | 168 "//ios/chrome/browser/browser_state:browser_state_impl", |
| 168 "//ios/chrome/browser/browsing_data", | 169 "//ios/chrome/browser/browsing_data", |
| 169 "//ios/chrome/browser/browsing_data:browsing_data_internal", | 170 "//ios/chrome/browser/browsing_data:browsing_data_internal", |
| 170 "//ios/chrome/browser/content_settings", | 171 "//ios/chrome/browser/content_settings", |
| 171 "//ios/chrome/browser/crash_report", | 172 "//ios/chrome/browser/crash_report", |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 242 | 243 |
| 243 source_set("main") { | 244 source_set("main") { |
| 244 sources = [ | 245 sources = [ |
| 245 "chrome_exe_main.mm", | 246 "chrome_exe_main.mm", |
| 246 ] | 247 ] |
| 247 | 248 |
| 248 deps = [ | 249 deps = [ |
| 249 ":app_internal", | 250 ":app_internal", |
| 250 "//base", | 251 "//base", |
| 251 "//components/crash/core/common", | 252 "//components/crash/core/common", |
| 252 "//ios/chrome/app/startup", | 253 "//ios/chrome/app/startup:startup_basic", |
| 253 "//ios/chrome/browser:browser_internal", | 254 "//ios/chrome/browser:browser_internal", |
| 254 "//ios/chrome/browser/crash_report", | 255 "//ios/chrome/browser/crash_report", |
| 255 "//ios/chrome/common", | 256 "//ios/chrome/common", |
| 256 "//third_party/google_toolbox_for_mac", | 257 "//third_party/google_toolbox_for_mac", |
| 257 ] | 258 ] |
| 258 } | 259 } |
| 259 | 260 |
| 260 ios_app_bundle("chrome") { | 261 ios_app_bundle("chrome") { |
| 261 output_name = chromium_short_name | 262 output_name = chromium_short_name |
| 262 | 263 |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 335 ] | 336 ] |
| 336 sources = [ | 337 sources = [ |
| 337 "$root_out_dir/share_extension.appex", | 338 "$root_out_dir/share_extension.appex", |
| 338 ] | 339 ] |
| 339 outputs = [ | 340 outputs = [ |
| 340 "{{bundle_plugins_dir}}/{{source_file_part}}", | 341 "{{bundle_plugins_dir}}/{{source_file_part}}", |
| 341 ] | 342 ] |
| 342 } | 343 } |
| 343 } | 344 } |
| 344 } | 345 } |
| OLD | NEW |