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

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

Issue 2965173002: Add ContextualSuggestionsService to Omnibox (Closed)
Patch Set: Move contextual suggestions service to c/o/b 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.
Mark P 2017/07/17 23:36:11 I don't think we're supposed to remove lines that
2 # Use of this source code is governed by a BSD-style license that can be 1 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 2 # found in the LICENSE file.
4 3
5 import("//build/config/chrome_build.gni") 4 import("//build/config/chrome_build.gni")
6 import("//build/config/crypto.gni") 5 import("//build/config/crypto.gni")
7 import("//build/config/features.gni") 6 import("//build/config/features.gni")
8 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
9 import("//build/split_static_library.gni") 8 import("//build/split_static_library.gni")
10 import("//chrome/common/features.gni") 9 import("//chrome/common/features.gni")
11 import("//components/offline_pages/features/features.gni") 10 import("//components/offline_pages/features/features.gni")
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 "app_controller_mac.h", 75 "app_controller_mac.h",
77 "app_controller_mac.mm", 76 "app_controller_mac.mm",
78 "app_mode/app_mode_utils.cc", 77 "app_mode/app_mode_utils.cc",
79 "app_mode/app_mode_utils.h", 78 "app_mode/app_mode_utils.h",
80 "autocomplete/autocomplete_classifier_factory.cc", 79 "autocomplete/autocomplete_classifier_factory.cc",
81 "autocomplete/autocomplete_classifier_factory.h", 80 "autocomplete/autocomplete_classifier_factory.h",
82 "autocomplete/chrome_autocomplete_provider_client.cc", 81 "autocomplete/chrome_autocomplete_provider_client.cc",
83 "autocomplete/chrome_autocomplete_provider_client.h", 82 "autocomplete/chrome_autocomplete_provider_client.h",
84 "autocomplete/chrome_autocomplete_scheme_classifier.cc", 83 "autocomplete/chrome_autocomplete_scheme_classifier.cc",
85 "autocomplete/chrome_autocomplete_scheme_classifier.h", 84 "autocomplete/chrome_autocomplete_scheme_classifier.h",
85 "autocomplete/contextual_suggestions_service_factory.cc",
86 "autocomplete/contextual_suggestions_service_factory.h",
86 "autocomplete/in_memory_url_index_factory.cc", 87 "autocomplete/in_memory_url_index_factory.cc",
87 "autocomplete/in_memory_url_index_factory.h", 88 "autocomplete/in_memory_url_index_factory.h",
88 "autocomplete/shortcuts_backend_factory.cc", 89 "autocomplete/shortcuts_backend_factory.cc",
89 "autocomplete/shortcuts_backend_factory.h", 90 "autocomplete/shortcuts_backend_factory.h",
90 "autofill/personal_data_manager_factory.cc", 91 "autofill/personal_data_manager_factory.cc",
91 "autofill/personal_data_manager_factory.h", 92 "autofill/personal_data_manager_factory.h",
92 "autofill/risk_util.cc", 93 "autofill/risk_util.cc",
93 "autofill/risk_util.h", 94 "autofill/risk_util.h",
94 "autofill/validation_rules_storage_factory.cc", 95 "autofill/validation_rules_storage_factory.cc",
95 "autofill/validation_rules_storage_factory.h", 96 "autofill/validation_rules_storage_factory.h",
(...skipping 4516 matching lines...) Expand 10 before | Expand all | Expand 10 after
4612 "//components/search_engines", 4613 "//components/search_engines",
4613 "//rlz:rlz_lib", 4614 "//rlz:rlz_lib",
4614 ] 4615 ]
4615 } 4616 }
4616 } 4617 }
4617 4618
4618 service_manifest("preferences_forwarder_manifest") { 4619 service_manifest("preferences_forwarder_manifest") {
4619 name = "preferences_forwarder" 4620 name = "preferences_forwarder"
4620 source = "prefs/forwarder_manifest.json" 4621 source = "prefs/forwarder_manifest.json"
4621 } 4622 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698