| 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("//build/config/ios/rules.gni") | 6 import("//build/config/ios/rules.gni") |
| 7 import("//third_party/protobuf/proto_library.gni") | 7 import("//third_party/protobuf/proto_library.gni") |
| 8 | 8 |
| 9 declare_args() { | 9 declare_args() { |
| 10 google_test_gaia_client_id = "" | 10 google_test_gaia_client_id = "" |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 "root_coordinator.mm", | 67 "root_coordinator.mm", |
| 68 "storekit_launcher.h", | 68 "storekit_launcher.h", |
| 69 "tab_parenting_global_observer.cc", | 69 "tab_parenting_global_observer.cc", |
| 70 "tab_parenting_global_observer.h", | 70 "tab_parenting_global_observer.h", |
| 71 "web_data_service_factory.cc", | 71 "web_data_service_factory.cc", |
| 72 "web_data_service_factory.h", | 72 "web_data_service_factory.h", |
| 73 "xcallback_parameters.h", | 73 "xcallback_parameters.h", |
| 74 "xcallback_parameters.mm", | 74 "xcallback_parameters.mm", |
| 75 ] | 75 ] |
| 76 deps = [ | 76 deps = [ |
| 77 ":settings_resources", |
| 77 "//base", | 78 "//base", |
| 78 "//components/autofill/core/browser", | 79 "//components/autofill/core/browser", |
| 79 "//components/autofill/core/common", | 80 "//components/autofill/core/common", |
| 80 "//components/gcm_driver", | 81 "//components/gcm_driver", |
| 81 "//components/handoff", | 82 "//components/handoff", |
| 82 "//components/keyed_service/core", | 83 "//components/keyed_service/core", |
| 83 "//components/keyed_service/ios", | 84 "//components/keyed_service/ios", |
| 84 "//components/metrics", | 85 "//components/metrics", |
| 85 "//components/metrics_services_manager", | 86 "//components/metrics_services_manager", |
| 86 "//components/net_log", | 87 "//components/net_log", |
| (...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 266 "//components/proxy_config", | 267 "//components/proxy_config", |
| 267 "//components/ssl_config", | 268 "//components/ssl_config", |
| 268 "//components/variations", | 269 "//components/variations", |
| 269 "//ios/web:test_support", | 270 "//ios/web:test_support", |
| 270 "//net", | 271 "//net", |
| 271 "//net:test_support", | 272 "//net:test_support", |
| 272 "//testing/gtest", | 273 "//testing/gtest", |
| 273 "//url", | 274 "//url", |
| 274 ] | 275 ] |
| 275 } | 276 } |
| OLD | NEW |