| 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("//ios/web/js_compile.gni") | 6 import("//ios/web/js_compile.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 480 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 491 "web_resource/web_resource_util.cc", | 491 "web_resource/web_resource_util.cc", |
| 492 "web_resource/web_resource_util.h", | 492 "web_resource/web_resource_util.h", |
| 493 "xcallback_parameters.h", | 493 "xcallback_parameters.h", |
| 494 "xcallback_parameters.mm", | 494 "xcallback_parameters.mm", |
| 495 ] | 495 ] |
| 496 | 496 |
| 497 deps = [ | 497 deps = [ |
| 498 ":about_flags", | 498 ":about_flags", |
| 499 ":injected_js", | 499 ":injected_js", |
| 500 "//base", | 500 "//base", |
| 501 "//base:prefs", | |
| 502 "//breakpad:client", | 501 "//breakpad:client", |
| 503 "//components/about_handler", | 502 "//components/about_handler", |
| 504 "//components/autofill/core/browser", | 503 "//components/autofill/core/browser", |
| 505 "//components/autofill/core/common", | 504 "//components/autofill/core/common", |
| 506 "//components/autofill/ios/browser", | 505 "//components/autofill/ios/browser", |
| 507 "//components/bookmarks/browser", | 506 "//components/bookmarks/browser", |
| 508 "//components/browser_sync/browser", | 507 "//components/browser_sync/browser", |
| 509 "//components/browser_sync/common", | 508 "//components/browser_sync/common", |
| 510 "//components/certificate_reporting", | 509 "//components/certificate_reporting", |
| 511 "//components/component_updater", | 510 "//components/component_updater", |
| (...skipping 25 matching lines...) Expand all Loading... |
| 537 "//components/metrics_services_manager", | 536 "//components/metrics_services_manager", |
| 538 "//components/net_log", | 537 "//components/net_log", |
| 539 "//components/network_time", | 538 "//components/network_time", |
| 540 "//components/ntp_snippets", | 539 "//components/ntp_snippets", |
| 541 "//components/omnibox/browser", | 540 "//components/omnibox/browser", |
| 542 "//components/open_from_clipboard", | 541 "//components/open_from_clipboard", |
| 543 "//components/password_manager/core/browser", | 542 "//components/password_manager/core/browser", |
| 544 "//components/password_manager/sync/browser", | 543 "//components/password_manager/sync/browser", |
| 545 "//components/policy:policy_component_common", | 544 "//components/policy:policy_component_common", |
| 546 "//components/pref_registry", | 545 "//components/pref_registry", |
| 546 "//components/prefs", |
| 547 "//components/profile_metrics", | 547 "//components/profile_metrics", |
| 548 "//components/proxy_config", | 548 "//components/proxy_config", |
| 549 "//components/rappor", | 549 "//components/rappor", |
| 550 "//components/resources", | 550 "//components/resources", |
| 551 "//components/safe_browsing_db", | 551 "//components/safe_browsing_db", |
| 552 "//components/search", | 552 "//components/search", |
| 553 "//components/search_engines", | 553 "//components/search_engines", |
| 554 "//components/security_interstitials/core", | 554 "//components/security_interstitials/core", |
| 555 "//components/security_state", | 555 "//components/security_state", |
| 556 "//components/sessions", | 556 "//components/sessions", |
| (...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 707 "//ios/chrome/common", | 707 "//ios/chrome/common", |
| 708 "//ios/chrome/test", | 708 "//ios/chrome/test", |
| 709 "//ios/public/provider/chrome/browser", | 709 "//ios/public/provider/chrome/browser", |
| 710 "//ios/web", | 710 "//ios/web", |
| 711 "//testing/gmock", | 711 "//testing/gmock", |
| 712 "//testing/gtest", | 712 "//testing/gtest", |
| 713 "//ui/base", | 713 "//ui/base", |
| 714 "//url", | 714 "//url", |
| 715 ] | 715 ] |
| 716 } | 716 } |
| OLD | NEW |