| 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 deps = [ | 50 deps = [ |
| 51 ":prepopulated_engines", | 51 ":prepopulated_engines", |
| 52 "//base", | 52 "//base", |
| 53 "//components/google/core/browser", | 53 "//components/google/core/browser", |
| 54 "//components/history/core/browser", | 54 "//components/history/core/browser", |
| 55 "//components/keyed_service/core", | 55 "//components/keyed_service/core", |
| 56 "//components/metrics/proto", | 56 "//components/metrics/proto", |
| 57 "//components/pref_registry", | 57 "//components/pref_registry", |
| 58 "//components/rappor", | 58 "//components/rappor", |
| 59 "//components/strings", | 59 "//components/strings", |
| 60 "//components/url_formatter", | 60 "//components/url_fixer", |
| 61 "//components/webdata/common", | 61 "//components/webdata/common", |
| 62 "//google_apis", | 62 "//google_apis", |
| 63 "//net", | 63 "//net", |
| 64 "//sql", | 64 "//sql", |
| 65 "//sync", | 65 "//sync", |
| 66 "//third_party/libxml", | 66 "//third_party/libxml", |
| 67 "//ui/gfx", | 67 "//ui/gfx", |
| 68 "//url", | 68 "//url", |
| 69 ] | 69 ] |
| 70 | 70 |
| (...skipping 21 matching lines...) Expand all Loading... |
| 92 ] | 92 ] |
| 93 } | 93 } |
| 94 | 94 |
| 95 json_to_struct("prepopulated_engines") { | 95 json_to_struct("prepopulated_engines") { |
| 96 visibility = [ ":*" ] | 96 visibility = [ ":*" ] |
| 97 | 97 |
| 98 source = "prepopulated_engines.json" | 98 source = "prepopulated_engines.json" |
| 99 schema_file = "prepopulated_engines_schema.json" | 99 schema_file = "prepopulated_engines_schema.json" |
| 100 namespace = "TemplateURLPrepopulateData" | 100 namespace = "TemplateURLPrepopulateData" |
| 101 } | 101 } |
| OLD | NEW |