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

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

Issue 2300213002: Adding an IO Data and keyed service to previews/ (Closed)
Patch Set: thestig comments 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
OLDNEW
1 # Copyright 2016 The Chromium Authors. All rights reserved. 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 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 static_library("previews") { 5 static_library("previews") {
6 sources = [ 6 sources = [
7 "previews_experiments.cc", 7 "previews_experiments.cc",
8 "previews_experiments.h", 8 "previews_experiments.h",
9 "previews_io_data.cc",
10 "previews_io_data.h",
11 "previews_ui_service.cc",
12 "previews_ui_service.h",
9 ] 13 ]
10 14
11 deps = [ 15 deps = [
12 "//base", 16 "//base",
13 "//components/variations", 17 "//components/variations",
14 ] 18 ]
15 } 19 }
16 20
17 source_set("unit_tests") { 21 source_set("unit_tests") {
18 testonly = true 22 testonly = true
19 sources = [ 23 sources = [
20 "previews_experiments_unittest.cc", 24 "previews_experiments_unittest.cc",
25 "previews_io_data_unittest.cc",
26 "previews_ui_service_unittest.cc",
21 ] 27 ]
22 28
23 deps = [ 29 deps = [
24 ":previews", 30 ":previews",
25 "//base", 31 "//base",
26 "//components/variations", 32 "//components/variations",
27 "//testing/gtest", 33 "//testing/gtest",
28 ] 34 ]
29 } 35 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698