| 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("//third_party/protobuf/proto_library.gni") | 8 import("//third_party/protobuf/proto_library.gni") |
| 9 | 9 |
| 10 declare_args() { | 10 declare_args() { |
| 11 google_test_gaia_client_id = "" | 11 google_test_gaia_client_id = "" |
| 12 google_test_gaia_client_secret = "" | 12 google_test_gaia_client_secret = "" |
| 13 google_staging_api_url = "" | 13 google_staging_api_url = "" |
| 14 google_staging_lso_url = "" | 14 google_staging_lso_url = "" |
| 15 google_test_api_url = "" | 15 google_test_api_url = "" |
| 16 google_test_lso_url = "" | 16 google_test_lso_url = "" |
| 17 google_test_oauth_client_id = "" | 17 google_test_oauth_client_id = "" |
| 18 google_test_oauth_client_secret = "" | 18 google_test_oauth_client_secret = "" |
| 19 google_test_oauth_url = "" | 19 google_test_oauth_url = "" |
| 20 google_test_sync_url = "" | 20 google_test_sync_url = "" |
| 21 } | 21 } |
| 22 | 22 |
| 23 source_set("browser") { | 23 source_set("browser") { |
| 24 configs += [ "//build/config/compiler:enable_arc" ] |
| 24 sources = [ | 25 sources = [ |
| 25 "about_flags.h", | 26 "about_flags.h", |
| 26 "about_flags.mm", | 27 "about_flags.mm", |
| 27 "app_startup_parameters.h", | 28 "app_startup_parameters.h", |
| 28 "app_startup_parameters.mm", | 29 "app_startup_parameters.mm", |
| 29 "application_context.cc", | 30 "application_context.cc", |
| 30 "application_context.h", | 31 "application_context.h", |
| 31 "arch_util.cc", | 32 "arch_util.cc", |
| 32 "arch_util.h", | 33 "arch_util.h", |
| 33 "browser_about_rewriter.cc", | 34 "browser_about_rewriter.cc", |
| (...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 233 "//components/proxy_config", | 234 "//components/proxy_config", |
| 234 "//components/ssl_config", | 235 "//components/ssl_config", |
| 235 "//components/variations", | 236 "//components/variations", |
| 236 "//ios/web:test_support", | 237 "//ios/web:test_support", |
| 237 "//net", | 238 "//net", |
| 238 "//net:test_support", | 239 "//net:test_support", |
| 239 "//testing/gtest", | 240 "//testing/gtest", |
| 240 "//url", | 241 "//url", |
| 241 ] | 242 ] |
| 242 } | 243 } |
| OLD | NEW |