OLD | NEW |
(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 } |
OLD | NEW |