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

Side by Side Diff: services/test/BUILD.gn

Issue 2897123004: Move display_service_unittests to services_unittests. (Closed)
Patch Set: Merge with tot Created 3 years, 7 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 unified diff | Download patch
OLDNEW
(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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698