Chromium Code Reviews| 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 27 matching lines...) Expand all Loading... | |
| 38 "template_url_prepopulate_data.cc", | 38 "template_url_prepopulate_data.cc", |
| 39 "template_url_prepopulate_data.h", | 39 "template_url_prepopulate_data.h", |
| 40 "template_url_service.cc", | 40 "template_url_service.cc", |
| 41 "template_url_service.h", | 41 "template_url_service.h", |
| 42 "template_url_service_client.h", | 42 "template_url_service_client.h", |
| 43 "template_url_service_observer.h", | 43 "template_url_service_observer.h", |
| 44 "util.cc", | 44 "util.cc", |
| 45 "util.h", | 45 "util.h", |
| 46 ] | 46 ] |
| 47 | 47 |
| 48 public_deps = [ | 48 public_deps = [ |
|
mattm
2017/05/10 01:12:11
don't worry about these non-net DEPS changes, I'm
| |
| 49 "//base", | |
| 50 "//components/google/core/browser", | |
| 51 "//components/keyed_service/core", | |
| 49 "//components/metrics/proto", | 52 "//components/metrics/proto", |
| 53 "//components/prefs", | |
| 54 "//components/sync", | |
| 55 "//components/webdata/common", | |
| 50 ] | 56 ] |
| 51 | 57 |
| 52 deps = [ | 58 deps = [ |
| 53 ":prepopulated_engines", | 59 ":prepopulated_engines", |
| 54 "//base", | |
| 55 "//base:i18n", | 60 "//base:i18n", |
| 56 "//components/google/core/browser", | |
| 57 "//components/history/core/browser", | 61 "//components/history/core/browser", |
| 58 "//components/keyed_service/core", | |
| 59 "//components/metrics/proto", | 62 "//components/metrics/proto", |
| 60 | 63 |
| 61 # The search_engines target is in an include cycle with | 64 # The search_engines target is in an include cycle with |
| 62 # components/omnibox/browser. The cycle is whitelisted in the | 65 # components/omnibox/browser. The cycle is whitelisted in the |
| 63 # omnibox/browser target, but should ideally be fixed, then this | 66 # omnibox/browser target, but should ideally be fixed, then this |
| 64 # dependency added: | 67 # dependency added: |
| 65 #"//components/omnibox/browser", | 68 #"//components/omnibox/browser", |
| 66 "//components/infobars/core", | 69 "//components/infobars/core", |
| 67 "//components/pref_registry", | 70 "//components/pref_registry", |
| 68 "//components/prefs", | |
| 69 "//components/rappor", | 71 "//components/rappor", |
| 70 "//components/strings", | 72 "//components/strings", |
| 71 "//components/sync", | |
| 72 "//components/url_formatter", | 73 "//components/url_formatter", |
| 73 "//components/webdata/common", | |
| 74 "//google_apis", | 74 "//google_apis", |
| 75 "//net", | 75 "//net", |
| 76 "//sql", | 76 "//sql", |
| 77 "//third_party/libxml", | 77 "//third_party/libxml", |
| 78 "//ui/base", | 78 "//ui/base", |
| 79 "//ui/gfx", | 79 "//ui/gfx", |
| 80 "//ui/gfx/geometry", | 80 "//ui/gfx/geometry", |
| 81 "//url", | 81 "//url", |
| 82 ] | 82 ] |
| 83 | 83 |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 151 } | 151 } |
| 152 } | 152 } |
| 153 | 153 |
| 154 json_to_struct("prepopulated_engines") { | 154 json_to_struct("prepopulated_engines") { |
| 155 visibility = [ ":*" ] | 155 visibility = [ ":*" ] |
| 156 | 156 |
| 157 source = "prepopulated_engines.json" | 157 source = "prepopulated_engines.json" |
| 158 schema_file = "prepopulated_engines_schema.json" | 158 schema_file = "prepopulated_engines_schema.json" |
| 159 namespace = "TemplateURLPrepopulateData" | 159 namespace = "TemplateURLPrepopulateData" |
| 160 } | 160 } |
| OLD | NEW |