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

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

Issue 2743563003: Pref service: add persistent pref store frontend and backend. (Closed)
Patch Set: rebase 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 source_set("tests") {
6 import("//testing/test.gni")
7
8 group("tests") {
9 testonly = true 6 testonly = true
10 deps = [
11 ":preferences_unittests",
12 ]
13 }
14
15 test("preferences_unittests") {
16 sources = [ 7 sources = [
17 "pref_client_store_unittest.cc", 8 "pref_client_store_unittest.cc",
18 "pref_store_client_unittest.cc", 9 "pref_store_client_unittest.cc",
19 ] 10 ]
20 deps = [ 11 deps = [
21 "//base", 12 "//base",
22 "//base/test:test_support", 13 "//base/test:test_support",
23 "//components/prefs:test_support", 14 "//components/prefs:test_support",
24 "//mojo/edk/test:run_all_unittests",
25 "//mojo/public/cpp/bindings:bindings", 15 "//mojo/public/cpp/bindings:bindings",
26 "//services/preferences/public/cpp", 16 "//services/preferences/public/cpp",
27 "//services/preferences/public/interfaces", 17 "//services/preferences/public/interfaces",
28 "//testing/gmock", 18 "//testing/gmock",
29 "//testing/gtest", 19 "//testing/gtest",
30 ] 20 ]
31 } 21 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698