| 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 23 matching lines...) Expand all Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |