OLD | NEW |
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 12 matching lines...) Expand all Loading... |
23 "search_engines_switches.cc", | 23 "search_engines_switches.cc", |
24 "search_engines_switches.h", | 24 "search_engines_switches.h", |
25 "search_host_to_urls_map.cc", | 25 "search_host_to_urls_map.cc", |
26 "search_host_to_urls_map.h", | 26 "search_host_to_urls_map.h", |
27 "search_terms_data.cc", | 27 "search_terms_data.cc", |
28 "search_terms_data.h", | 28 "search_terms_data.h", |
29 "template_url.cc", | 29 "template_url.cc", |
30 "template_url.h", | 30 "template_url.h", |
31 "template_url_data.cc", | 31 "template_url_data.cc", |
32 "template_url_data.h", | 32 "template_url_data.h", |
| 33 "template_url_data_util.cc", |
| 34 "template_url_data_util.h", |
33 "template_url_fetcher.cc", | 35 "template_url_fetcher.cc", |
34 "template_url_fetcher.h", | 36 "template_url_fetcher.h", |
35 "template_url_id.h", | 37 "template_url_id.h", |
36 "template_url_parser.cc", | 38 "template_url_parser.cc", |
37 "template_url_parser.h", | 39 "template_url_parser.h", |
38 "template_url_prepopulate_data.cc", | 40 "template_url_prepopulate_data.cc", |
39 "template_url_prepopulate_data.h", | 41 "template_url_prepopulate_data.h", |
40 "template_url_service.cc", | 42 "template_url_service.cc", |
41 "template_url_service.h", | 43 "template_url_service.h", |
42 "template_url_service_client.h", | 44 "template_url_service_client.h", |
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
150 } | 152 } |
151 } | 153 } |
152 | 154 |
153 json_to_struct("prepopulated_engines") { | 155 json_to_struct("prepopulated_engines") { |
154 visibility = [ ":*" ] | 156 visibility = [ ":*" ] |
155 | 157 |
156 source = "prepopulated_engines.json" | 158 source = "prepopulated_engines.json" |
157 schema_file = "prepopulated_engines_schema.json" | 159 schema_file = "prepopulated_engines_schema.json" |
158 namespace = "TemplateURLPrepopulateData" | 160 namespace = "TemplateURLPrepopulateData" |
159 } | 161 } |
OLD | NEW |