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 sources = [ | 8 sources = [ |
| 9 "background_upload_alert.h", |
| 10 "background_upload_alert.mm", |
9 "chrome_main_starter.h", | 11 "chrome_main_starter.h", |
10 "chrome_main_starter.mm", | 12 "chrome_main_starter.mm", |
11 "client_registration.h", | 13 "client_registration.h", |
12 "client_registration.mm", | 14 "client_registration.mm", |
13 "ios_chrome_main.h", | 15 "ios_chrome_main.h", |
14 "ios_chrome_main.mm", | 16 "ios_chrome_main.mm", |
15 "ios_chrome_main_delegate.h", | 17 "ios_chrome_main_delegate.h", |
16 "ios_chrome_main_delegate.mm", | 18 "ios_chrome_main_delegate.mm", |
17 "network_stack_setup.h", | 19 "network_stack_setup.h", |
18 "network_stack_setup.mm", | 20 "network_stack_setup.mm", |
(...skipping 13 matching lines...) Expand all Loading... |
32 "//ios/chrome/browser/web", | 34 "//ios/chrome/browser/web", |
33 "//ios/chrome/browser/web:web_internal", | 35 "//ios/chrome/browser/web:web_internal", |
34 "//ios/net", | 36 "//ios/net", |
35 "//ios/public/provider/chrome/browser", | 37 "//ios/public/provider/chrome/browser", |
36 "//ios/web", | 38 "//ios/web", |
37 "//ios/web/public/app", | 39 "//ios/web/public/app", |
38 "//skia", | 40 "//skia", |
39 ios_provider_target, | 41 ios_provider_target, |
40 ] | 42 ] |
41 } | 43 } |
OLD | NEW |