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_type_converters.cc", | 16 "gpu_type_converters.cc", |
17 "gpu_type_converters.h", | 17 "gpu_type_converters.h", |
18 "mus_common_export.h", | 18 "mus_common_export.h", |
19 "switches.cc", | 19 "switches.cc", |
20 "switches.h", | 20 "switches.h", |
21 "transient_window_utils.h", | 21 "transient_window_utils.h", |
22 "types.h", | 22 "types.h", |
23 "util.h", | 23 "util.h", |
24 ] | 24 ] |
25 | 25 |
26 defines = [ "MUS_COMMON_IMPLEMENTATION" ] | 26 defines = [ "MUS_COMMON_IMPLEMENTATION" ] |
27 | 27 |
28 deps = [ | 28 deps = [ |
29 "//components/mus/public/interfaces", | 29 "//components/mus/public/interfaces", |
| 30 "//gpu/config", |
30 "//gpu/ipc/common:command_buffer_traits", | 31 "//gpu/ipc/common:command_buffer_traits", |
31 "//ipc:ipc", | 32 "//ipc:ipc", |
32 "//mojo/public/c/system:for_component", | 33 "//mojo/public/c/system:for_component", |
33 "//ui/events:events", | 34 "//ui/events:events", |
34 "//ui/gfx/ipc/geometry", | 35 "//ui/gfx/ipc/geometry", |
35 ] | 36 ] |
36 | 37 |
37 public_deps = [ | 38 public_deps = [ |
38 "//ui/base", | 39 "//ui/base", |
39 ] | 40 ] |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 "//ui/events:events", | 77 "//ui/events:events", |
77 "//ui/gfx:test_support", | 78 "//ui/gfx:test_support", |
78 "//ui/gfx/ipc", | 79 "//ui/gfx/ipc", |
79 ] | 80 ] |
80 } | 81 } |
81 | 82 |
82 mojo_application_manifest("mus_common_unittests_app_manifest") { | 83 mojo_application_manifest("mus_common_unittests_app_manifest") { |
83 application_name = "mus_common_unittests_app" | 84 application_name = "mus_common_unittests_app" |
84 source = "mus_common_unittests_app_manifest.json" | 85 source = "mus_common_unittests_app_manifest.json" |
85 } | 86 } |
OLD | NEW |