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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
100 | 100 |
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/keyed_service/core", | 111 "//components/keyed_service/core", |
111 "//components/metrics", | 112 "//components/metrics", |
112 "//components/omnibox/common", | 113 "//components/omnibox/common", |
113 "//components/open_from_clipboard", | 114 "//components/open_from_clipboard", |
114 "//components/pref_registry", | 115 "//components/pref_registry", |
115 "//components/query_parser", | 116 "//components/query_parser", |
116 "//components/resources", | 117 "//components/resources", |
117 "//components/search", | 118 "//components/search", |
118 "//components/search_engines", | 119 "//components/search_engines", |
119 "//components/sessions", | 120 "//components/sessions", |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
180 "//components/search", | 181 "//components/search", |
181 "//components/search_engines", | 182 "//components/search_engines", |
182 "//components/variations", | 183 "//components/variations", |
183 "//testing/gmock", | 184 "//testing/gmock", |
184 "//testing/gtest", | 185 "//testing/gtest", |
185 "//url", | 186 "//url", |
186 ":browser", | 187 ":browser", |
187 ":test_support", | 188 ":test_support", |
188 ] | 189 ] |
189 } | 190 } |
OLD | NEW |