| 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..342169618540854039c937fdcac72196358a70e1
|
| --- /dev/null
|
| +++ b/services/preferences/public/cpp/tests/BUILD.gn
|
| @@ -0,0 +1,31 @@
|
| +# 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",
|
| + "run_all_unittests.cc",
|
| + ]
|
| + deps = [
|
| + "//base",
|
| + "//base/test:test_support",
|
| + "//components/prefs:test_support",
|
| + "//mojo/edk/system",
|
| + "//mojo/public/cpp/bindings:bindings",
|
| + "//services/preferences/public/cpp",
|
| + "//services/preferences/public/interfaces",
|
| + "//services/shell/public/cpp",
|
| + "//testing/gtest",
|
| + ]
|
| +}
|
|
|