OLD | NEW |
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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 "mus_gpu_memory_buffer_manager.h", | 44 "mus_gpu_memory_buffer_manager.h", |
45 ] | 45 ] |
46 | 46 |
47 deps = [ | 47 deps = [ |
48 "//gpu/ipc/client", | 48 "//gpu/ipc/client", |
49 ] | 49 ] |
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 "//services/ui/gpu/interfaces", | 55 "//services/ui/gpu/interfaces", |
55 "//ui/gfx", | 56 "//ui/gfx", |
56 ] | 57 ] |
57 } | 58 } |
58 | 59 |
59 source_set("run_all_service_tests") { | 60 source_set("run_all_service_tests") { |
60 testonly = true | 61 testonly = true |
61 | 62 |
62 sources = [ | 63 sources = [ |
63 "run_all_service_tests.cc", | 64 "run_all_service_tests.cc", |
(...skipping 17 matching lines...) Expand all Loading... |
81 "task_runner_test_base.cc", | 82 "task_runner_test_base.cc", |
82 "task_runner_test_base.h", | 83 "task_runner_test_base.h", |
83 ] | 84 ] |
84 | 85 |
85 deps = [ | 86 deps = [ |
86 "//base", | 87 "//base", |
87 "//base/test:test_support", | 88 "//base/test:test_support", |
88 "//testing/gtest", | 89 "//testing/gtest", |
89 ] | 90 ] |
90 } | 91 } |
OLD | NEW |