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

Unified Diff: services/preferences/public/cpp/tests/BUILD.gn

Issue 2092453002: Mojom interface for Preferences (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Switch to using DictionaryValue 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 side-by-side diff with in-line comments
Download patch
Index: services/preferences/public/cpp/tests/BUILD.gn
diff --git a/services/preferences/public/cpp/tests/BUILD.gn b/services/preferences/public/cpp/tests/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..c136678bb7034d0c763bcfee6083f087d121bb1a
--- /dev/null
+++ b/services/preferences/public/cpp/tests/BUILD.gn
@@ -0,0 +1,30 @@
+# 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.
+
+import("//build/config/ui.gni")
+import("//testing/test.gni")
+
+group("tests") {
+ testonly = true
+ deps = [
+ ":preferences_unittests",
+ ]
+}
+
+test("preferences_unittests") {
+ sources = [
+ "pref_observer_store_unittest.cc",
+ ]
+ deps = [
+ "//base",
+ "//base/test:test_support",
+ "//components/prefs:test_support",
+ "//mojo/edk/test:run_all_unittests",
+ "//mojo/public/cpp/bindings:bindings",
+ "//services/preferences/public/cpp",
+ "//services/preferences/public/interfaces",
+ "//services/shell/public/cpp",
+ "//testing/gtest",
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698