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

Side by Side Diff: services/preferences/public/cpp/tests/BUILD.gn

Issue 2635153002: Pref service: expose all read-only PrefStores through Mojo (Closed)
Patch Set: Address bauerb's review comments Created 3 years, 9 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 import("//build/config/ui.gni") 5 import("//build/config/ui.gni")
6 import("//testing/test.gni") 6 import("//testing/test.gni")
7 7
8 group("tests") { 8 group("tests") {
9 testonly = true 9 testonly = true
10 deps = [ 10 deps = [
11 ":preferences_unittests", 11 ":preferences_unittests",
12 ] 12 ]
13 } 13 }
14 14
15 test("preferences_unittests") { 15 test("preferences_unittests") {
16 sources = [ 16 sources = [
17 "pref_client_store_unittest.cc", 17 "pref_client_store_unittest.cc",
18 "pref_store_client_unittest.cc",
18 ] 19 ]
19 deps = [ 20 deps = [
20 "//base", 21 "//base",
21 "//base/test:test_support", 22 "//base/test:test_support",
22 "//components/prefs:test_support", 23 "//components/prefs:test_support",
23 "//mojo/edk/test:run_all_unittests", 24 "//mojo/edk/test:run_all_unittests",
24 "//mojo/public/cpp/bindings:bindings", 25 "//mojo/public/cpp/bindings:bindings",
25 "//services/preferences/public/cpp", 26 "//services/preferences/public/cpp",
26 "//services/preferences/public/interfaces", 27 "//services/preferences/public/interfaces",
28 "//testing/gmock",
27 "//testing/gtest", 29 "//testing/gtest",
28 ] 30 ]
29 } 31 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698