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

Side by Side Diff: services/ui/common/BUILD.gn

Issue 2907663003: Ensure the services gpu tests run with ozone. (Closed)
Patch Set: fix deps 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
« no previous file with comments | « services/test/run_all_service_tests.cc ('k') | services/ui/common/run_all_service_tests.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//build/config/ui.gni") 5 import("//build/config/ui.gni")
6 import("//services/service_manager/public/service_manifest.gni") 6 import("//services/service_manager/public/service_manifest.gni")
7 import("//testing/test.gni") 7 import("//testing/test.gni")
8 8
9 source_set("mus_common") { 9 source_set("mus_common") {
10 sources = [ 10 sources = [
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 50
51 public_deps = [ 51 public_deps = [
52 "//gpu/command_buffer/client", 52 "//gpu/command_buffer/client",
53 "//gpu/ipc/common", 53 "//gpu/ipc/common",
54 "//gpu/ipc/host", 54 "//gpu/ipc/host",
55 "//services/ui/gpu/interfaces", 55 "//services/ui/gpu/interfaces",
56 "//ui/gfx", 56 "//ui/gfx",
57 ] 57 ]
58 } 58 }
59 59
60 source_set("run_all_service_tests") {
61 testonly = true
62
63 sources = [
64 "run_all_service_tests.cc",
65 ]
66
67 deps = [
68 "//base/test:test_support",
69 "//mojo/edk/system",
70 ]
71
72 if (use_ozone) {
73 deps += [ "//ui/ozone" ]
74 }
75 }
76
77 source_set("task_runner_test_base") { 60 source_set("task_runner_test_base") {
78 testonly = true 61 testonly = true
79 62
80 sources = [ 63 sources = [
81 "task_runner_test_base.cc", 64 "task_runner_test_base.cc",
82 "task_runner_test_base.h", 65 "task_runner_test_base.h",
83 ] 66 ]
84 67
85 deps = [ 68 deps = [
86 "//base", 69 "//base",
87 "//base/test:test_support", 70 "//base/test:test_support",
88 "//testing/gtest", 71 "//testing/gtest",
89 ] 72 ]
90 } 73 }
OLDNEW
« no previous file with comments | « services/test/run_all_service_tests.cc ('k') | services/ui/common/run_all_service_tests.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698