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

Side by Side Diff: components/search_engines/BUILD.gn

Issue 616763002: Importing certain bookmarks from firefox and HTML file as search engines. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed dependency issue. Created 5 years, 11 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
« no previous file with comments | « chrome/utility/importer/ie_importer_win.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/features.gni") 5 import("//build/config/features.gni")
6 import("//tools/json_to_struct/json_to_struct.gni") 6 import("//tools/json_to_struct/json_to_struct.gni")
7 7
8 static_library("search_engines") { 8 static_library("search_engines") {
9 sources = [ 9 sources = [
10 "default_search_manager.cc", 10 "default_search_manager.cc",
(...skipping 23 matching lines...) Expand all
34 "template_url_prepopulate_data.cc", 34 "template_url_prepopulate_data.cc",
35 "template_url_prepopulate_data.h", 35 "template_url_prepopulate_data.h",
36 "template_url_service.cc", 36 "template_url_service.cc",
37 "template_url_service.h", 37 "template_url_service.h",
38 "template_url_service_client.h", 38 "template_url_service_client.h",
39 "template_url_service_observer.h", 39 "template_url_service_observer.h",
40 "util.cc", 40 "util.cc",
41 "util.h", 41 "util.h",
42 ] 42 ]
43 43
44 public_deps = [
45 "//components/metrics/proto",
46 ]
47
44 deps = [ 48 deps = [
45 ":prepopulated_engines", 49 ":prepopulated_engines",
46 "//base", 50 "//base",
47 "//components/google/core/browser", 51 "//components/google/core/browser",
48 "//components/history/core/browser", 52 "//components/history/core/browser",
49 "//components/keyed_service/core", 53 "//components/keyed_service/core",
50 "//components/metrics/proto", 54 "//components/metrics/proto",
51 "//components/pref_registry", 55 "//components/pref_registry",
52 "//components/rappor", 56 "//components/rappor",
53 "//components/strings", 57 "//components/strings",
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 ] 90 ]
87 } 91 }
88 92
89 json_to_struct("prepopulated_engines") { 93 json_to_struct("prepopulated_engines") {
90 visibility = [ ":*" ] 94 visibility = [ ":*" ]
91 95
92 source = "prepopulated_engines.json" 96 source = "prepopulated_engines.json"
93 schema_file = "prepopulated_engines_schema.json" 97 schema_file = "prepopulated_engines_schema.json"
94 namespace = "TemplateURLPrepopulateData" 98 namespace = "TemplateURLPrepopulateData"
95 } 99 }
OLDNEW
« no previous file with comments | « chrome/utility/importer/ie_importer_win.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698