| Index: components/suggestions/BUILD.gn
|
| diff --git a/components/suggestions/BUILD.gn b/components/suggestions/BUILD.gn
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..1fe2ff9b32e8371c612f28cf1300fa2dfece0ea7
|
| --- /dev/null
|
| +++ b/components/suggestions/BUILD.gn
|
| @@ -0,0 +1,28 @@
|
| +# 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("suggestions") {
|
| + sources = [
|
| + "blacklist_store.cc",
|
| + "blacklist_store.h",
|
| + "image_manager.h",
|
| + "suggestions_pref_names.cc",
|
| + "suggestions_pref_names.h",
|
| + "suggestions_service.cc",
|
| + "suggestions_service.h",
|
| + "suggestions_store.cc",
|
| + "suggestions_store.h",
|
| + ]
|
| +
|
| + deps = [
|
| + "//base",
|
| + "//components/keyed_service/core",
|
| + "//components/pref_registry",
|
| + "//components/suggestions/proto",
|
| + "//components/variations",
|
| + "//net",
|
| + "//ui/gfx",
|
| + "//url",
|
| + ]
|
| +}
|
|
|