OLD | NEW |
1 # Copyright 2016 The Chromium Authors. All rights reserved. | 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 | 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("//mojo/public/mojo_application_manifest.gni") | 5 import("//mojo/public/mojo_application_manifest.gni") |
6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
7 | 7 |
8 source_set("gpu") { | 8 source_set("gpu") { |
9 output_name = "mus_gpu" | 9 output_name = "mus_gpu" |
10 | 10 |
11 sources = [ | 11 sources = [ |
| 12 "gpu_memory_buffer_manager_mus_local.cc", |
| 13 "gpu_memory_buffer_manager_mus_local.h", |
| 14 "gpu_service_impl.cc", |
| 15 "gpu_service_impl.h", |
12 "gpu_service_mus.cc", | 16 "gpu_service_mus.cc", |
13 "gpu_service_mus.h", | 17 "gpu_service_mus.h", |
14 ] | 18 ] |
15 | 19 |
16 deps = [ | 20 deps = [ |
| 21 "//components/mus/common:mus_common", |
17 "//components/mus/public/interfaces", | 22 "//components/mus/public/interfaces", |
18 "//gpu/ipc/common", | 23 "//gpu/ipc/common", |
19 "//gpu/ipc/service", | 24 "//gpu/ipc/service", |
20 "//ipc", | 25 "//ipc", |
| 26 "//media/gpu/ipc/service", |
21 "//mojo/public/cpp/system", | 27 "//mojo/public/cpp/system", |
| 28 "//services/shell/public/cpp", |
22 "//ui/gfx:memory_buffer", | 29 "//ui/gfx:memory_buffer", |
| 30 "//ui/gl/init", |
23 ] | 31 ] |
24 } | 32 } |
25 | 33 |
26 group("tests") { | 34 group("tests") { |
27 testonly = true | 35 testonly = true |
28 deps = [ | 36 deps = [ |
29 ":mus_gpu_unittests", | 37 ":mus_gpu_unittests", |
30 ] | 38 ] |
31 } | 39 } |
32 | 40 |
(...skipping 10 matching lines...) Expand all Loading... |
43 | 51 |
44 data_deps = [ | 52 data_deps = [ |
45 ":mus_gpu_unittests_app_manifest", | 53 ":mus_gpu_unittests_app_manifest", |
46 ] | 54 ] |
47 } | 55 } |
48 | 56 |
49 mojo_application_manifest("mus_gpu_unittests_app_manifest") { | 57 mojo_application_manifest("mus_gpu_unittests_app_manifest") { |
50 application_name = "mus_gpu_unittests_app" | 58 application_name = "mus_gpu_unittests_app" |
51 source = "mus_gpu_unittests_app_manifest.json" | 59 source = "mus_gpu_unittests_app_manifest.json" |
52 } | 60 } |
OLD | NEW |