Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(667)

Side by Side Diff: components/previews/BUILD.gn

Issue 2333003002: Changed previews component to be a layered component. (Closed)
Patch Set: Rebased on master Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « components/BUILD.gn ('k') | components/previews/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright 2016 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 static_library("previews") {
6 sources = [
7 "previews_data_savings.cc",
8 "previews_data_savings.h",
9 "previews_experiments.cc",
10 "previews_experiments.h",
11 "previews_io_data.cc",
12 "previews_io_data.h",
13 "previews_ui_service.cc",
14 "previews_ui_service.h",
15 ]
16
17 deps = [
18 "//base",
19 "//components/data_reduction_proxy/core/common",
20 "//components/variations",
21 ]
22 }
23
24 source_set("unit_tests") {
25 testonly = true
26 sources = [
27 "previews_data_savings_unittest.cc",
28 "previews_experiments_unittest.cc",
29 "previews_io_data_unittest.cc",
30 "previews_ui_service_unittest.cc",
31 ]
32
33 deps = [
34 ":previews",
35 "//base",
36 "//base/test:test_support",
37 "//components/data_reduction_proxy/core/common",
38 "//components/variations",
39 "//testing/gtest",
40 ]
41 }
OLDNEW
« no previous file with comments | « components/BUILD.gn ('k') | components/previews/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698