| OLD | NEW |
| (Empty) |
| 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 | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 import("//ios/public/provider/chrome/browser/build_config.gni") | |
| 6 | |
| 7 source_set("startup") { | |
| 8 sources = [ | |
| 9 "chrome_main_starter.h", | |
| 10 "chrome_main_starter.mm", | |
| 11 "client_registration.h", | |
| 12 "client_registration.mm", | |
| 13 "ios_chrome_main.h", | |
| 14 "ios_chrome_main.mm", | |
| 15 "ios_chrome_main_delegate.h", | |
| 16 "ios_chrome_main_delegate.mm", | |
| 17 "network_stack_setup.h", | |
| 18 "network_stack_setup.mm", | |
| 19 "provider_registration.h", | |
| 20 "provider_registration.mm", | |
| 21 "register_experimental_settings.h", | |
| 22 "register_experimental_settings.mm", | |
| 23 "setup_debugging.h", | |
| 24 "setup_debugging.mm", | |
| 25 ] | |
| 26 | |
| 27 deps = [ | |
| 28 "//base", | |
| 29 "//components/crash/core/common", | |
| 30 "//ios/chrome/browser", | |
| 31 "//ios/chrome/browser:browser_internal", | |
| 32 "//ios/chrome/browser/web", | |
| 33 "//ios/chrome/browser/web:web_internal", | |
| 34 "//ios/net", | |
| 35 "//ios/public/provider/chrome/browser", | |
| 36 "//ios/web", | |
| 37 "//ios/web/public/app", | |
| 38 "//skia", | |
| 39 ios_provider_target, | |
| 40 ] | |
| 41 } | |
| OLD | NEW |