| 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",
|
| + ]
|
| +}
|
|
|