| 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 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 239 libs = [ | 239 libs = [ |
| 240 "CoreSpotlight.framework", | 240 "CoreSpotlight.framework", |
| 241 "MediaPlayer.framework", | 241 "MediaPlayer.framework", |
| 242 ] | 242 ] |
| 243 | 243 |
| 244 allow_circular_includes_from = | 244 allow_circular_includes_from = |
| 245 [ "//ios/chrome/app/application_delegate:application_delegate_internal" ] | 245 [ "//ios/chrome/app/application_delegate:application_delegate_internal" ] |
| 246 } | 246 } |
| 247 | 247 |
| 248 source_set("main") { | 248 source_set("main") { |
| 249 configs += [ "//build/config/compiler:enable_arc" ] |
| 249 sources = [ | 250 sources = [ |
| 250 "chrome_exe_main.mm", | 251 "chrome_exe_main.mm", |
| 251 ] | 252 ] |
| 252 | 253 |
| 253 deps = [ | 254 deps = [ |
| 254 ":app_internal", | 255 ":app_internal", |
| 255 "//base", | 256 "//base", |
| 256 "//components/crash/core/common", | 257 "//components/crash/core/common", |
| 257 "//ios/chrome/app/startup:startup_basic", | 258 "//ios/chrome/app/startup:startup_basic", |
| 258 "//ios/chrome/browser:browser_internal", | 259 "//ios/chrome/browser:browser_internal", |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 357 ] | 358 ] |
| 358 sources = [ | 359 sources = [ |
| 359 "$root_out_dir/share_extension.appex", | 360 "$root_out_dir/share_extension.appex", |
| 360 ] | 361 ] |
| 361 outputs = [ | 362 outputs = [ |
| 362 "{{bundle_plugins_dir}}/{{source_file_part}}", | 363 "{{bundle_plugins_dir}}/{{source_file_part}}", |
| 363 ] | 364 ] |
| 364 } | 365 } |
| 365 } | 366 } |
| 366 } | 367 } |
| OLD | NEW |