| OLD | NEW |
| (Empty) | |
| 1 # Copyright 2017 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 source_set("run_all_service_tests") { |
| 6 # This target is in a separate directory because we want to expand DEPS so |
| 7 # that it not all of //services can access //ui. |
| 8 visibility = [ "//services:*" ] |
| 9 |
| 10 testonly = true |
| 11 |
| 12 sources = [ |
| 13 "run_all_service_tests.cc", |
| 14 ] |
| 15 |
| 16 deps = [ |
| 17 "//base", |
| 18 "//base/test:test_support", |
| 19 "//services/service_manager/public/cpp/test:common_initialization", |
| 20 "//ui/base", |
| 21 ] |
| 22 |
| 23 data_deps = [ |
| 24 "//ui/resources:ui_test_pak_data", |
| 25 ] |
| 26 |
| 27 if (is_android) { |
| 28 deps += [ "//mojo/android:libsystem_java" ] |
| 29 } |
| 30 } |
| OLD | NEW |