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("//third_party/protobuf/proto_library.gni") | 5 import("//third_party/protobuf/proto_library.gni") |
6 | 6 |
7 source_set("browser") { | 7 source_set("browser") { |
8 sources = [ | 8 sources = [ |
9 "answers_cache.cc", | 9 "answers_cache.cc", |
10 "answers_cache.h", | 10 "answers_cache.h", |
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 public_deps = [ | 101 public_deps = [ |
102 "//components/history/core/browser", | 102 "//components/history/core/browser", |
103 "//components/metrics/proto", | 103 "//components/metrics/proto", |
104 ] | 104 ] |
105 deps = [ | 105 deps = [ |
106 "//base", | 106 "//base", |
107 "//base:i18n", | 107 "//base:i18n", |
108 "//base:prefs", | 108 "//base:prefs", |
109 "//components/bookmarks/browser", | 109 "//components/bookmarks/browser", |
110 "//components/crash_keys", # TODO(mpearson): remove once 464926 is fixed. | 110 "//components/crash_keys", # TODO(mpearson): remove once 464926 is fixed. |
| 111 "//components/data_use_measurement/core", |
111 "//components/keyed_service/core", | 112 "//components/keyed_service/core", |
112 "//components/metrics", | 113 "//components/metrics", |
113 "//components/omnibox/common", | 114 "//components/omnibox/common", |
114 "//components/open_from_clipboard", | 115 "//components/open_from_clipboard", |
115 "//components/pref_registry", | 116 "//components/pref_registry", |
116 "//components/query_parser", | 117 "//components/query_parser", |
117 "//components/resources", | 118 "//components/resources", |
118 "//components/search", | 119 "//components/search", |
119 "//components/search_engines", | 120 "//components/search_engines", |
120 "//components/sessions", | 121 "//components/sessions", |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
183 "//components/search", | 184 "//components/search", |
184 "//components/search_engines", | 185 "//components/search_engines", |
185 "//components/variations", | 186 "//components/variations", |
186 "//testing/gmock", | 187 "//testing/gmock", |
187 "//testing/gtest", | 188 "//testing/gtest", |
188 "//url", | 189 "//url", |
189 ":browser", | 190 ":browser", |
190 ":test_support", | 191 ":test_support", |
191 ] | 192 ] |
192 } | 193 } |
OLD | NEW |