| Index: components/previews/BUILD.gn
|
| diff --git a/components/previews/BUILD.gn b/components/previews/BUILD.gn
|
| index b5ca808c8113b8a79db5c49884c0e5914d4382ab..6a1f65e703f6f1f5a021a8f770a39b96349730ed 100644
|
| --- a/components/previews/BUILD.gn
|
| +++ b/components/previews/BUILD.gn
|
| @@ -1,29 +1,34 @@
|
| # Copyright 2016 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("previews") {
|
| sources = [
|
| + "previews_data_savings.cc",
|
| + "previews_data_savings.h",
|
| "previews_experiments.cc",
|
| "previews_experiments.h",
|
| ]
|
|
|
| deps = [
|
| "//base",
|
| + "//components/data_reduction_proxy/core/common",
|
| "//components/variations",
|
| ]
|
| }
|
|
|
| source_set("unit_tests") {
|
| testonly = true
|
| sources = [
|
| + "previews_data_savings_unittest.cc",
|
| "previews_experiments_unittest.cc",
|
| ]
|
|
|
| deps = [
|
| ":previews",
|
| "//base",
|
| + "//components/data_reduction_proxy/core/common",
|
| "//components/variations",
|
| "//testing/gtest",
|
| ]
|
| }
|
|
|