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("//tools/grit/repack.gni") | 5 import("//tools/grit/repack.gni") |
6 | 6 |
7 source_set("mus") { | 7 source_set("mus") { |
8 sources = [ | 8 sources = [ |
9 "aura_init.cc", | 9 "aura_init.cc", |
10 "aura_init.h", | 10 "aura_init.h", |
| 11 "display_converter.cc", |
| 12 "display_converter.h", |
11 "input_method_mus.cc", | 13 "input_method_mus.cc", |
12 "input_method_mus.h", | 14 "input_method_mus.h", |
13 "native_widget_mus.cc", | 15 "native_widget_mus.cc", |
14 "native_widget_mus.h", | 16 "native_widget_mus.h", |
15 "native_widget_view_manager.cc", | 17 "native_widget_view_manager.cc", |
16 "native_widget_view_manager.h", | 18 "native_widget_view_manager.h", |
17 "surface_binding.cc", | 19 "surface_binding.cc", |
18 "surface_binding.h", | 20 "surface_binding.h", |
19 "surface_context_factory.cc", | 21 "surface_context_factory.cc", |
20 "surface_context_factory.h", | 22 "surface_context_factory.h", |
| 23 "window_manager_client_area_insets.h", |
21 "window_manager_connection.cc", | 24 "window_manager_connection.cc", |
22 "window_manager_connection.h", | 25 "window_manager_connection.h", |
23 "window_tree_host_mus.cc", | 26 "window_tree_host_mus.cc", |
24 "window_tree_host_mus.h", | 27 "window_tree_host_mus.h", |
25 ] | 28 ] |
26 | 29 |
27 public_deps = [ | 30 public_deps = [ |
28 ":resources", | 31 ":resources", |
29 "//components/mus/public/cpp", | 32 "//components/mus/public/cpp", |
30 ] | 33 ] |
(...skipping 15 matching lines...) Expand all Loading... |
46 "//mojo/converters/ime", | 49 "//mojo/converters/ime", |
47 "//mojo/converters/input_events", | 50 "//mojo/converters/input_events", |
48 "//mojo/converters/network", | 51 "//mojo/converters/network", |
49 "//mojo/converters/surfaces", | 52 "//mojo/converters/surfaces", |
50 "//third_party/mojo/src/mojo/public/cpp/bindings", | 53 "//third_party/mojo/src/mojo/public/cpp/bindings", |
51 "//third_party/icu", | 54 "//third_party/icu", |
52 "//ui/aura", | 55 "//ui/aura", |
53 "//ui/compositor", | 56 "//ui/compositor", |
54 "//ui/events", | 57 "//ui/events", |
55 "//ui/events:events_base", | 58 "//ui/events:events_base", |
| 59 "//ui/gfx", |
| 60 "//ui/gfx/geometry", |
56 "//ui/gl", | 61 "//ui/gl", |
57 "//ui/mojo/ime:interfaces_cpp_sources", | 62 "//ui/mojo/ime:interfaces_cpp_sources", |
58 "//ui/mojo/init", | 63 "//ui/mojo/init", |
59 "//ui/views", | 64 "//ui/views", |
60 "//ui/wm", | 65 "//ui/wm", |
61 ] | 66 ] |
62 | 67 |
63 data_deps = [ | 68 data_deps = [ |
64 "//components/resource_provider", | 69 "//components/resource_provider", |
65 ] | 70 ] |
(...skipping 11 matching lines...) Expand all Loading... |
77 "$root_gen_dir/ui/strings/ui_strings_en-US.pak", | 82 "$root_gen_dir/ui/strings/ui_strings_en-US.pak", |
78 "$root_gen_dir/ui/views/resources/views_resources_100_percent.pak", | 83 "$root_gen_dir/ui/views/resources/views_resources_100_percent.pak", |
79 ] | 84 ] |
80 output = "$root_out_dir/views_mus_resources.pak" | 85 output = "$root_out_dir/views_mus_resources.pak" |
81 deps = [ | 86 deps = [ |
82 "//ui/strings", | 87 "//ui/strings", |
83 "//ui/resources", | 88 "//ui/resources", |
84 "//ui/views/resources", | 89 "//ui/views/resources", |
85 ] | 90 ] |
86 } | 91 } |
OLD | NEW |