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

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

Issue 393193002: Add search_engines and precache components to GN build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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 | Annotate | Revision Log
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 import("//tools/json_to_struct/json_to_struct.gni")
6
7 static_library("search_engines") {
8 sources = [
9 "default_search_manager.cc",
10 "default_search_manager.h",
11 "default_search_policy_handler.cc",
12 "default_search_policy_handler.h",
13 "keyword_table.cc",
14 "keyword_table.h",
15 "keyword_web_data_service.cc",
16 "keyword_web_data_service.h",
17 "search_engine_type.h",
18 "search_engines_pref_names.cc",
19 "search_engines_pref_names.h",
20 "search_engines_switches.cc",
21 "search_engines_switches.h",
22 "search_host_to_urls_map.cc",
23 "search_host_to_urls_map.h",
24 "search_terms_data.cc",
25 "search_terms_data.h",
26 "template_url.cc",
27 "template_url.h",
28 "template_url_data.cc",
29 "template_url_data.h",
30 "template_url_fetcher.cc",
31 "template_url_fetcher.h",
32 "template_url_id.h",
33 "template_url_parser.cc",
34 "template_url_parser.h",
35 "template_url_prepopulate_data.cc",
36 "template_url_prepopulate_data.h",
37 "template_url_service.cc",
38 "template_url_service.h",
39 "template_url_service_client.h",
40 "template_url_service_observer.h",
41 "util.cc",
42 "util.h",
43 ]
44
45 deps = [
46 ":prepopulated_engines",
47 "//base",
48 "//components/keyed_service/core",
49 "//components/metrics/proto",
50 "//components/policy",
51 "//components/pref_registry",
52 "//components/rappor",
53 "//components/strings",
54 "//components/url_fixer",
55 "//components/webdata/common",
56 "//google_apis",
57 "//net",
58 "//sql",
59 "//sync",
60 "//third_party/libxml",
61 "//ui/gfx",
62 "//url",
63 #'google_core_browser', TODO(GYP)
64 ]
65 }
66
67 json_to_struct("prepopulated_engines") {
68 visibility = ":*"
69
70 source = "prepopulated_engines.json"
71 schema_file = "prepopulated_engines_schema.json"
72 namespace = "TemplateURLPrepopulateData"
73 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698