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("//mojo/public/mojo_application_manifest.gni") | 6 import("//mojo/public/mojo_application_manifest.gni") |
7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
8 | 8 |
9 component("mus_common") { | 9 component("mus_common") { |
10 sources = [ | 10 sources = [ |
11 "event_matcher_util.cc", | 11 "event_matcher_util.cc", |
12 "event_matcher_util.h", | 12 "event_matcher_util.h", |
13 "event_param_traits.cc", | 13 "event_param_traits.cc", |
14 "event_param_traits.h", | 14 "event_param_traits.h", |
15 "event_param_traits_macros.h", | 15 "event_param_traits_macros.h", |
| 16 "gpu_memory_buffer_impl.cc", |
| 17 "gpu_memory_buffer_impl.h", |
| 18 "gpu_service.cc", |
| 19 "gpu_service.h", |
16 "gpu_type_converters.cc", | 20 "gpu_type_converters.cc", |
17 "gpu_type_converters.h", | 21 "gpu_type_converters.h", |
| 22 "mojo_buffer_backing.cc", |
| 23 "mojo_buffer_backing.h", |
| 24 "mojo_gpu_memory_buffer.cc", |
| 25 "mojo_gpu_memory_buffer.h", |
| 26 "mojo_gpu_memory_buffer_manager.cc", |
| 27 "mojo_gpu_memory_buffer_manager.h", |
18 "mus_common_export.h", | 28 "mus_common_export.h", |
19 "switches.cc", | 29 "switches.cc", |
20 "switches.h", | 30 "switches.h", |
21 "transient_window_utils.h", | 31 "transient_window_utils.h", |
22 "types.h", | 32 "types.h", |
23 "util.h", | 33 "util.h", |
24 ] | 34 ] |
25 | 35 |
26 defines = [ "MUS_COMMON_IMPLEMENTATION" ] | 36 defines = [ "MUS_COMMON_IMPLEMENTATION" ] |
27 | 37 |
28 deps = [ | 38 deps = [ |
29 "//components/mus/public/interfaces", | 39 "//components/mus/public/interfaces", |
| 40 "//gpu/command_buffer/client", |
30 "//gpu/config", | 41 "//gpu/config", |
| 42 "//gpu/ipc/client", |
31 "//gpu/ipc/common:command_buffer_traits", | 43 "//gpu/ipc/common:command_buffer_traits", |
32 "//ipc:ipc", | 44 "//ipc:ipc", |
33 "//mojo/public/c/system:for_component", | 45 "//mojo/public/c/system:for_component", |
| 46 "//services/shell/public/cpp", |
34 "//ui/events:events", | 47 "//ui/events:events", |
35 "//ui/gfx/ipc/geometry", | 48 "//ui/gfx/ipc/geometry", |
36 ] | 49 ] |
37 | 50 |
38 public_deps = [ | 51 public_deps = [ |
39 "//ui/base", | 52 "//ui/base", |
40 ] | 53 ] |
41 } | 54 } |
42 | 55 |
43 source_set("run_all_shelltests") { | 56 source_set("run_all_shelltests") { |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
77 "//ui/events:events", | 90 "//ui/events:events", |
78 "//ui/gfx:test_support", | 91 "//ui/gfx:test_support", |
79 "//ui/gfx/ipc", | 92 "//ui/gfx/ipc", |
80 ] | 93 ] |
81 } | 94 } |
82 | 95 |
83 mojo_application_manifest("mus_common_unittests_app_manifest") { | 96 mojo_application_manifest("mus_common_unittests_app_manifest") { |
84 application_name = "mus_common_unittests_app" | 97 application_name = "mus_common_unittests_app" |
85 source = "mus_common_unittests_app_manifest.json" | 98 source = "mus_common_unittests_app_manifest.json" |
86 } | 99 } |
OLD | NEW |