Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

Side by Side Diff: chrome/browser/BUILD.gn

Issue 2965173002: Add ContextualSuggestionsService to Omnibox (Closed)
Patch Set: Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 import("//build/config/crypto.gni") 6 import("//build/config/crypto.gni")
7 import("//build/config/features.gni") 7 import("//build/config/features.gni")
8 import("//build/config/ui.gni") 8 import("//build/config/ui.gni")
9 import("//build/split_static_library.gni") 9 import("//build/split_static_library.gni")
10 import("//chrome/common/features.gni") 10 import("//chrome/common/features.gni")
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 "app_controller_mac.h", 76 "app_controller_mac.h",
77 "app_controller_mac.mm", 77 "app_controller_mac.mm",
78 "app_mode/app_mode_utils.cc", 78 "app_mode/app_mode_utils.cc",
79 "app_mode/app_mode_utils.h", 79 "app_mode/app_mode_utils.h",
80 "autocomplete/autocomplete_classifier_factory.cc", 80 "autocomplete/autocomplete_classifier_factory.cc",
81 "autocomplete/autocomplete_classifier_factory.h", 81 "autocomplete/autocomplete_classifier_factory.h",
82 "autocomplete/chrome_autocomplete_provider_client.cc", 82 "autocomplete/chrome_autocomplete_provider_client.cc",
83 "autocomplete/chrome_autocomplete_provider_client.h", 83 "autocomplete/chrome_autocomplete_provider_client.h",
84 "autocomplete/chrome_autocomplete_scheme_classifier.cc", 84 "autocomplete/chrome_autocomplete_scheme_classifier.cc",
85 "autocomplete/chrome_autocomplete_scheme_classifier.h", 85 "autocomplete/chrome_autocomplete_scheme_classifier.h",
86 "autocomplete/contextual_suggestions_service_factory.cc",
87 "autocomplete/contextual_suggestions_service_factory.h",
86 "autocomplete/in_memory_url_index_factory.cc", 88 "autocomplete/in_memory_url_index_factory.cc",
87 "autocomplete/in_memory_url_index_factory.h", 89 "autocomplete/in_memory_url_index_factory.h",
88 "autocomplete/shortcuts_backend_factory.cc", 90 "autocomplete/shortcuts_backend_factory.cc",
89 "autocomplete/shortcuts_backend_factory.h", 91 "autocomplete/shortcuts_backend_factory.h",
90 "autofill/personal_data_manager_factory.cc", 92 "autofill/personal_data_manager_factory.cc",
91 "autofill/personal_data_manager_factory.h", 93 "autofill/personal_data_manager_factory.h",
92 "autofill/risk_util.cc", 94 "autofill/risk_util.cc",
93 "autofill/risk_util.h", 95 "autofill/risk_util.h",
94 "autofill/validation_rules_storage_factory.cc", 96 "autofill/validation_rules_storage_factory.cc",
95 "autofill/validation_rules_storage_factory.h", 97 "autofill/validation_rules_storage_factory.h",
(...skipping 1391 matching lines...) Expand 10 before | Expand all | Expand 10 after
1487 "//components/captive_portal", 1489 "//components/captive_portal",
1488 "//components/certificate_reporting", 1490 "//components/certificate_reporting",
1489 "//components/certificate_transparency", 1491 "//components/certificate_transparency",
1490 "//components/chrome_cleaner/public/constants", 1492 "//components/chrome_cleaner/public/constants",
1491 "//components/chrome_cleaner/public/interfaces", 1493 "//components/chrome_cleaner/public/interfaces",
1492 "//components/cloud_devices/common", 1494 "//components/cloud_devices/common",
1493 "//components/component_updater", 1495 "//components/component_updater",
1494 "//components/content_settings/core/browser", 1496 "//components/content_settings/core/browser",
1495 "//components/content_settings/core/common", 1497 "//components/content_settings/core/common",
1496 "//components/contextual_search:browser", 1498 "//components/contextual_search:browser",
1499 "//components/contextual_suggestions",
1497 "//components/cookie_config", 1500 "//components/cookie_config",
1498 "//components/crx_file", 1501 "//components/crx_file",
1499 "//components/data_reduction_proxy/content/browser", 1502 "//components/data_reduction_proxy/content/browser",
1500 "//components/data_reduction_proxy/core/browser", 1503 "//components/data_reduction_proxy/core/browser",
1501 "//components/data_usage/core", 1504 "//components/data_usage/core",
1502 "//components/data_use_measurement/content", 1505 "//components/data_use_measurement/content",
1503 "//components/data_use_measurement/core:ascriber", 1506 "//components/data_use_measurement/core:ascriber",
1504 "//components/device_event_log", 1507 "//components/device_event_log",
1505 "//components/dom_distiller/content/browser", 1508 "//components/dom_distiller/content/browser",
1506 "//components/domain_reliability", 1509 "//components/domain_reliability",
(...skipping 3105 matching lines...) Expand 10 before | Expand all | Expand 10 after
4612 "//components/search_engines", 4615 "//components/search_engines",
4613 "//rlz:rlz_lib", 4616 "//rlz:rlz_lib",
4614 ] 4617 ]
4615 } 4618 }
4616 } 4619 }
4617 4620
4618 service_manifest("preferences_forwarder_manifest") { 4621 service_manifest("preferences_forwarder_manifest") {
4619 name = "preferences_forwarder" 4622 name = "preferences_forwarder"
4620 source = "prefs/forwarder_manifest.json" 4623 source = "prefs/forwarder_manifest.json"
4621 } 4624 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/about_flags.cc » ('j') | chrome/browser/autocomplete/chrome_autocomplete_provider_client.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698