| OLD | NEW |
| (Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 |
| 5 import("//build/config/ui.gni") |
| 6 import("//testing/test.gni") |
| 7 |
| 8 group("tests") { |
| 9 testonly = true |
| 10 deps = [ |
| 11 ":preferences_unittests", |
| 12 ] |
| 13 } |
| 14 |
| 15 test("preferences_unittests") { |
| 16 sources = [ |
| 17 "pref_observer_store_unittest.cc", |
| 18 ] |
| 19 deps = [ |
| 20 "//base", |
| 21 "//base/test:test_support", |
| 22 "//components/prefs:test_support", |
| 23 "//mojo/edk/test:run_all_unittests", |
| 24 "//mojo/public/cpp/bindings:bindings", |
| 25 "//services/preferences/public/cpp", |
| 26 "//services/preferences/public/interfaces", |
| 27 "//services/shell/public/cpp", |
| 28 "//testing/gtest", |
| 29 ] |
| 30 } |
| OLD | NEW |