Chromium Code Reviews| Index: components/omnibox/BUILD.gn |
| diff --git a/components/omnibox/BUILD.gn b/components/omnibox/BUILD.gn |
| index 05dcc82349fc85126806c2ded483a842721d4a84..46f4a7e863765ba4d6e420b7c18c6da45c8c2e92 100644 |
| --- a/components/omnibox/BUILD.gn |
| +++ b/components/omnibox/BUILD.gn |
| @@ -1,6 +1,7 @@ |
| # Copyright 2014 The Chromium Authors. All rights reserved. |
| # Use of this source code is governed by a BSD-style license that can be |
| # found in the LICENSE file. |
| +import("//third_party/protobuf/proto_library.gni") |
|
Peter Kasting
2015/06/16 21:58:29
Nit: Blank line above this
blundell
2015/06/17 14:16:18
Done.
|
| static_library("omnibox") { |
| sources = [ |
| @@ -23,8 +24,12 @@ static_library("omnibox") { |
| "bookmark_provider.h", |
| "history_provider.cc", |
| "history_provider.h", |
| + "history_quick_provider.cc", |
| + "history_quick_provider.h", |
| "history_url_provider.cc", |
| "history_url_provider.h", |
| + "in_memory_url_index.cc", |
| + "in_memory_url_index.h", |
| "in_memory_url_index_types.cc", |
| "in_memory_url_index_types.h", |
| "keyword_extensions_delegate.cc", |
| @@ -45,6 +50,8 @@ static_library("omnibox") { |
| "search_suggestion_parser.h", |
| "suggestion_answer.cc", |
| "suggestion_answer.h", |
| + "url_index_private_data.cc", |
| + "url_index_private_data.h", |
| "url_prefix.cc", |
| "url_prefix.h", |
| ] |
| @@ -53,10 +60,12 @@ static_library("omnibox") { |
| "//components/metrics/proto", |
| ] |
| deps = [ |
| + ":in_memory_url_index_cache_proto", |
| "//base", |
| "//base:i18n", |
| "//components/bookmarks/browser", |
| "//components/history/core/browser", |
| + "//components/keyed_service/core", |
| "//components/query_parser", |
| "//components/resources", |
| "//components/search", |
| @@ -66,11 +75,18 @@ static_library("omnibox") { |
| "//components/variations", |
| "//components/variations/net", |
| "//net", |
| + "//third_party/protobuf:protobuf_lite", |
| "//ui/base", |
| "//url", |
| ] |
| } |
| +proto_library("in_memory_url_index_cache_proto") { |
| + sources = [ |
| + "in_memory_url_index_cache.proto", |
| + ] |
| +} |
| + |
| # crash_keys.h is included from //chrome/common and thus can't live with |
| # the other browser-specific targets. |
| # TODO(mpearson): Remove this target once crbug.com/464926 is closed. |