| Index: components/history/core/browser/BUILD.gn
|
| diff --git a/components/history/core/browser/BUILD.gn b/components/history/core/browser/BUILD.gn
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..bbf27e046200e63ed5918a3187eeb53b02ef2592
|
| --- /dev/null
|
| +++ b/components/history/core/browser/BUILD.gn
|
| @@ -0,0 +1,29 @@
|
| +# 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.
|
| +
|
| +static_library("browser") {
|
| + sources = [
|
| + "history_client.cc",
|
| + "history_client.h",
|
| + "history_match.cc",
|
| + "history_match.h",
|
| + "in_memory_database.cc",
|
| + "in_memory_database.h",
|
| + "keyword_id.h",
|
| + "keyword_search_term.cc",
|
| + "keyword_search_term.h",
|
| + "url_database.cc",
|
| + "url_database.h",
|
| + "url_row.cc",
|
| + "url_row.h",
|
| + ]
|
| +
|
| + deps = [
|
| + "//base",
|
| + "//components/keyed_service/core",
|
| + "//components/query_parser",
|
| + "//net",
|
| + "//sql",
|
| + ]
|
| +}
|
|
|