| 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("//rlz/features/features.gni") |
| 9 import("//third_party/protobuf/proto_library.gni") | 9 import("//third_party/protobuf/proto_library.gni") |
| 10 | 10 |
| 11 declare_args() { | 11 declare_args() { |
| 12 google_test_gaia_client_id = "" | 12 google_test_gaia_client_id = "" |
| 13 google_test_gaia_client_secret = "" | 13 google_test_gaia_client_secret = "" |
| 14 google_staging_oauth_url = "" |
| 14 google_staging_api_url = "" | 15 google_staging_api_url = "" |
| 15 google_staging_lso_url = "" | 16 google_staging_lso_url = "" |
| 16 google_test_api_url = "" | 17 google_test_api_url = "" |
| 17 google_test_lso_url = "" | 18 google_test_lso_url = "" |
| 18 google_test_oauth_client_id = "" | 19 google_test_oauth_client_id = "" |
| 19 google_test_oauth_client_secret = "" | 20 google_test_oauth_client_secret = "" |
| 20 google_test_oauth_url = "" | 21 google_test_oauth_url = "" |
| 21 google_test_sync_url = "" | 22 google_test_sync_url = "" |
| 22 } | 23 } |
| 23 | 24 |
| (...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 192 if (enable_rlz) { | 193 if (enable_rlz) { |
| 193 deps += [ "//ios/chrome/browser/rlz" ] | 194 deps += [ "//ios/chrome/browser/rlz" ] |
| 194 } | 195 } |
| 195 } | 196 } |
| 196 | 197 |
| 197 buildflag_header("google_api_keys_header") { | 198 buildflag_header("google_api_keys_header") { |
| 198 header = "google_api_keys.h" | 199 header = "google_api_keys.h" |
| 199 flags = [ | 200 flags = [ |
| 200 "GOOGLE_STAGING_API_URL=\"$google_staging_api_url\"", | 201 "GOOGLE_STAGING_API_URL=\"$google_staging_api_url\"", |
| 201 "GOOGLE_STAGING_LSO_URL=\"$google_staging_lso_url\"", | 202 "GOOGLE_STAGING_LSO_URL=\"$google_staging_lso_url\"", |
| 203 "GOOGLE_STAGING_OAUTH_URL=\"$google_staging_oauth_url\"", |
| 202 "GOOGLE_TEST_API_URL=\"$google_test_api_url\"", | 204 "GOOGLE_TEST_API_URL=\"$google_test_api_url\"", |
| 203 "GOOGLE_TEST_LSO_URL=\"$google_test_lso_url\"", | 205 "GOOGLE_TEST_LSO_URL=\"$google_test_lso_url\"", |
| 204 "GOOGLE_TEST_OAUTH_CLIENT_ID=\"$google_test_oauth_client_id\"", | 206 "GOOGLE_TEST_OAUTH_CLIENT_ID=\"$google_test_oauth_client_id\"", |
| 205 "GOOGLE_TEST_OAUTH_CLIENT_SECRET=\"$google_test_oauth_client_secret\"", | 207 "GOOGLE_TEST_OAUTH_CLIENT_SECRET=\"$google_test_oauth_client_secret\"", |
| 206 "GOOGLE_TEST_OAUTH_URL=\"$google_test_oauth_url\"", | 208 "GOOGLE_TEST_OAUTH_URL=\"$google_test_oauth_url\"", |
| 207 "GOOGLE_TEST_SYNC_URL=\"$google_test_sync_url\"", | 209 "GOOGLE_TEST_SYNC_URL=\"$google_test_sync_url\"", |
| 208 ] | 210 ] |
| 209 } | 211 } |
| 210 | 212 |
| 211 bundle_data("settings_resources") { | 213 bundle_data("settings_resources") { |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 250 | 252 |
| 251 source_set("browser_internal") { | 253 source_set("browser_internal") { |
| 252 sources = [ | 254 sources = [ |
| 253 "callback_counter.h", | 255 "callback_counter.h", |
| 254 "callback_counter.mm", | 256 "callback_counter.mm", |
| 255 ] | 257 ] |
| 256 deps = [ | 258 deps = [ |
| 257 "//base", | 259 "//base", |
| 258 ] | 260 ] |
| 259 } | 261 } |
| OLD | NEW |