| 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/buildflag_header.gni") | 5 import("//build/buildflag_header.gni") |
| 6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
| 7 import("//build/config/ios/rules.gni") | 7 import("//build/config/ios/rules.gni") |
| 8 import("//rlz/features/features.gni") |
| 8 import("//third_party/protobuf/proto_library.gni") | 9 import("//third_party/protobuf/proto_library.gni") |
| 9 | 10 |
| 10 declare_args() { | 11 declare_args() { |
| 11 google_test_gaia_client_id = "" | 12 google_test_gaia_client_id = "" |
| 12 google_test_gaia_client_secret = "" | 13 google_test_gaia_client_secret = "" |
| 13 google_staging_api_url = "" | 14 google_staging_api_url = "" |
| 14 google_staging_lso_url = "" | 15 google_staging_lso_url = "" |
| 15 google_test_api_url = "" | 16 google_test_api_url = "" |
| 16 google_test_lso_url = "" | 17 google_test_lso_url = "" |
| 17 google_test_oauth_client_id = "" | 18 google_test_oauth_client_id = "" |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 "//ios/chrome/app/strings", | 115 "//ios/chrome/app/strings", |
| 115 "//ios/chrome/browser/browser_state", | 116 "//ios/chrome/browser/browser_state", |
| 116 "//ios/chrome/browser/sync/glue", | 117 "//ios/chrome/browser/sync/glue", |
| 117 "//ios/chrome/common", | 118 "//ios/chrome/common", |
| 118 "//ios/net", | 119 "//ios/net", |
| 119 "//ios/public/provider/chrome/browser", | 120 "//ios/public/provider/chrome/browser", |
| 120 "//ios/public/provider/chrome/browser/voice", | 121 "//ios/public/provider/chrome/browser/voice", |
| 121 "//ios/web", | 122 "//ios/web", |
| 122 "//ios/web:user_agent", | 123 "//ios/web:user_agent", |
| 123 "//net", | 124 "//net", |
| 125 "//rlz/features", |
| 124 "//url", | 126 "//url", |
| 125 ] | 127 ] |
| 126 allow_circular_includes_from = [ | 128 allow_circular_includes_from = [ |
| 127 "//ios/chrome/browser/sync/glue", | 129 "//ios/chrome/browser/sync/glue", |
| 128 "//ios/chrome/browser/browser_state", | 130 "//ios/chrome/browser/browser_state", |
| 129 ] | 131 ] |
| 130 libs = [ "UIKit.framework" ] | 132 libs = [ "UIKit.framework" ] |
| 131 } | 133 } |
| 132 | 134 |
| 133 source_set("browser_impl") { | 135 source_set("browser_impl") { |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 175 "//ios/chrome/browser/prefs", | 177 "//ios/chrome/browser/prefs", |
| 176 "//ios/chrome/browser/services/gcm", | 178 "//ios/chrome/browser/services/gcm", |
| 177 "//ios/chrome/browser/translate", | 179 "//ios/chrome/browser/translate", |
| 178 "//ios/chrome/browser/update_client", | 180 "//ios/chrome/browser/update_client", |
| 179 "//ios/chrome/browser/web_resource", | 181 "//ios/chrome/browser/web_resource", |
| 180 "//ios/chrome/common", | 182 "//ios/chrome/common", |
| 181 "//ios/public/provider/chrome/browser", | 183 "//ios/public/provider/chrome/browser", |
| 182 "//ios/web", | 184 "//ios/web", |
| 183 "//ios/web/public/app", | 185 "//ios/web/public/app", |
| 184 "//net", | 186 "//net", |
| 187 "//rlz/features", |
| 185 "//ui/base", | 188 "//ui/base", |
| 186 ] | 189 ] |
| 187 | 190 |
| 188 if (enable_rlz) { | 191 if (enable_rlz) { |
| 189 deps += [ "//ios/chrome/browser/rlz" ] | 192 deps += [ "//ios/chrome/browser/rlz" ] |
| 190 } | 193 } |
| 191 } | 194 } |
| 192 | 195 |
| 193 buildflag_header("google_api_keys_header") { | 196 buildflag_header("google_api_keys_header") { |
| 194 header = "google_api_keys.h" | 197 header = "google_api_keys.h" |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 233 "//components/proxy_config", | 236 "//components/proxy_config", |
| 234 "//components/ssl_config", | 237 "//components/ssl_config", |
| 235 "//components/variations", | 238 "//components/variations", |
| 236 "//ios/web:test_support", | 239 "//ios/web:test_support", |
| 237 "//net", | 240 "//net", |
| 238 "//net:test_support", | 241 "//net:test_support", |
| 239 "//testing/gtest", | 242 "//testing/gtest", |
| 240 "//url", | 243 "//url", |
| 241 ] | 244 ] |
| 242 } | 245 } |
| OLD | NEW |