OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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/features.gni") | 5 import("//build/config/features.gni") |
6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
7 import("//mojo/public/mojo_application.gni") | 7 import("//mojo/public/mojo_application.gni") |
8 import("//mojo/public/mojo_application_manifest.gni") | 8 import("//mojo/public/mojo_application_manifest.gni") |
9 import("//testing/test.gni") | 9 import("//testing/test.gni") |
10 import("//tools/grit/repack.gni") | 10 import("//tools/grit/repack.gni") |
11 | 11 |
12 component("mus") { | 12 component("mus") { |
13 output_name = "ui_views_mus_lib" | 13 output_name = "ui_views_mus_lib" |
14 | 14 |
15 sources = [ | 15 sources = [ |
16 "aura_init.cc", | 16 "aura_init.cc", |
17 "aura_init.h", | 17 "aura_init.h", |
18 "display_list.cc", | 18 "display_list.cc", |
19 "display_list.h", | 19 "display_list.h", |
20 "input_method_mus.cc", | 20 "input_method_mus.cc", |
21 "input_method_mus.h", | 21 "input_method_mus.h", |
22 "mus_export.h", | 22 "mus_export.h", |
23 "native_widget_mus.cc", | 23 "native_widget_mus.cc", |
24 "native_widget_mus.h", | 24 "native_widget_mus.h", |
25 "platform_window_mus.cc", | |
26 "platform_window_mus.h", | |
27 "screen_mus.cc", | 25 "screen_mus.cc", |
28 "screen_mus.h", | 26 "screen_mus.h", |
29 "screen_mus_delegate.h", | 27 "screen_mus_delegate.h", |
30 "surface_binding.cc", | 28 "surface_binding.cc", |
31 "surface_binding.h", | 29 "surface_binding.h", |
32 "surface_context_factory.cc", | 30 "surface_context_factory.cc", |
33 "surface_context_factory.h", | 31 "surface_context_factory.h", |
34 "window_manager_connection.cc", | 32 "window_manager_connection.cc", |
35 "window_manager_connection.h", | 33 "window_manager_connection.h", |
36 "window_manager_constants_converters.cc", | 34 "window_manager_constants_converters.cc", |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
75 "//ui/events/devices", | 73 "//ui/events/devices", |
76 "//ui/events/mojo", | 74 "//ui/events/mojo", |
77 "//ui/gfx", | 75 "//ui/gfx", |
78 "//ui/gfx/geometry", | 76 "//ui/gfx/geometry", |
79 "//ui/gfx/geometry/mojo", | 77 "//ui/gfx/geometry/mojo", |
80 "//ui/gl", | 78 "//ui/gl", |
81 "//ui/mojo/display", | 79 "//ui/mojo/display", |
82 "//ui/mojo/ime:interfaces_cpp_sources", | 80 "//ui/mojo/ime:interfaces_cpp_sources", |
83 "//ui/native_theme", | 81 "//ui/native_theme", |
84 "//ui/platform_window", | 82 "//ui/platform_window", |
| 83 "//ui/platform_window/stub", |
85 "//ui/views", | 84 "//ui/views", |
86 "//ui/wm", | 85 "//ui/wm", |
87 ] | 86 ] |
88 | 87 |
89 if (is_linux && !is_android) { | 88 if (is_linux && !is_android) { |
90 deps += [ "//components/font_service/public/cpp" ] | 89 deps += [ "//components/font_service/public/cpp" ] |
91 data_deps = [ | 90 data_deps = [ |
92 "//components/font_service", | 91 "//components/font_service", |
93 ] | 92 ] |
94 } | 93 } |
(...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
293 type = "exe" | 292 type = "exe" |
294 application_name = "views_mus_interactive_ui_tests" | 293 application_name = "views_mus_interactive_ui_tests" |
295 source = "interactive_ui_tests_manifest.json" | 294 source = "interactive_ui_tests_manifest.json" |
296 } | 295 } |
297 | 296 |
298 group("for_component") { | 297 group("for_component") { |
299 public_deps = [ | 298 public_deps = [ |
300 ":mus", | 299 ":mus", |
301 ] | 300 ] |
302 } | 301 } |
OLD | NEW |