| 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/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//third_party/protobuf/proto_library.gni") | 6 import("//third_party/protobuf/proto_library.gni") |
| 7 | 7 |
| 8 declare_args() { | 8 declare_args() { |
| 9 google_test_gaia_client_id = "" | 9 google_test_gaia_client_id = "" |
| 10 google_test_gaia_client_secret = "" | 10 google_test_gaia_client_secret = "" |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 "//net", | 105 "//net", |
| 106 "//url", | 106 "//url", |
| 107 ] | 107 ] |
| 108 allow_circular_includes_from = [ | 108 allow_circular_includes_from = [ |
| 109 "//ios/chrome/browser/sync/glue", | 109 "//ios/chrome/browser/sync/glue", |
| 110 "//ios/chrome/browser/browser_state", | 110 "//ios/chrome/browser/browser_state", |
| 111 ] | 111 ] |
| 112 libs = [ "UIKit.framework" ] | 112 libs = [ "UIKit.framework" ] |
| 113 } | 113 } |
| 114 | 114 |
| 115 # TODO(crbug.com/658242): this target is there to avoid breaking downstream | |
| 116 # when this CL rolls. It should be removed in favor of browser. | |
| 117 group("browser_no_public_deps") { | |
| 118 public_deps = [ | |
| 119 ":browser", | |
| 120 ] | |
| 121 } | |
| 122 | |
| 123 source_set("browser_impl") { | 115 source_set("browser_impl") { |
| 124 sources = [ | 116 sources = [ |
| 125 "application_context_impl.cc", | 117 "application_context_impl.cc", |
| 126 "application_context_impl.h", | 118 "application_context_impl.h", |
| 127 "ios_chrome_main_parts.h", | 119 "ios_chrome_main_parts.h", |
| 128 "ios_chrome_main_parts.mm", | 120 "ios_chrome_main_parts.mm", |
| 129 ] | 121 ] |
| 130 deps = [ | 122 deps = [ |
| 131 ":about_flags", | 123 ":about_flags", |
| 132 ":browser", | 124 ":browser", |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 235 "//components/proxy_config", | 227 "//components/proxy_config", |
| 236 "//components/ssl_config", | 228 "//components/ssl_config", |
| 237 "//components/variations", | 229 "//components/variations", |
| 238 "//ios/web:test_support", | 230 "//ios/web:test_support", |
| 239 "//net", | 231 "//net", |
| 240 "//net:test_support", | 232 "//net:test_support", |
| 241 "//testing/gtest", | 233 "//testing/gtest", |
| 242 "//url", | 234 "//url", |
| 243 ] | 235 ] |
| 244 } | 236 } |
| OLD | NEW |