| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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("//ios/public/provider/chrome/browser/build_config.gni") | 5 import("//ios/public/provider/chrome/browser/build_config.gni") |
| 6 | 6 |
| 7 source_set("startup") { | 7 source_set("startup") { |
| 8 configs += [ "//build/config/compiler:enable_arc" ] |
| 8 sources = [ | 9 sources = [ |
| 9 "background_upload_alert.h", | 10 "background_upload_alert.h", |
| 10 "background_upload_alert.mm", | 11 "background_upload_alert.mm", |
| 11 "chrome_main_starter.h", | 12 "chrome_main_starter.h", |
| 12 "chrome_main_starter.mm", | 13 "chrome_main_starter.mm", |
| 13 "client_registration.h", | 14 "client_registration.h", |
| 14 "client_registration.mm", | 15 "client_registration.mm", |
| 15 "ios_chrome_main.h", | 16 "ios_chrome_main.h", |
| 16 "ios_chrome_main.mm", | 17 "ios_chrome_main.mm", |
| 17 "ios_chrome_main_delegate.h", | 18 "ios_chrome_main_delegate.h", |
| (...skipping 16 matching lines...) Expand all Loading... |
| 34 "//ios/chrome/browser/web", | 35 "//ios/chrome/browser/web", |
| 35 "//ios/chrome/browser/web:web_internal", | 36 "//ios/chrome/browser/web:web_internal", |
| 36 "//ios/net", | 37 "//ios/net", |
| 37 "//ios/public/provider/chrome/browser", | 38 "//ios/public/provider/chrome/browser", |
| 38 "//ios/web", | 39 "//ios/web", |
| 39 "//ios/web/public/app", | 40 "//ios/web/public/app", |
| 40 "//skia", | 41 "//skia", |
| 41 ios_provider_target, | 42 ios_provider_target, |
| 42 ] | 43 ] |
| 43 } | 44 } |
| OLD | NEW |