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", | 11 "display_converter.cc", |
12 "display_converter.h", | 12 "display_converter.h", |
13 "input_method_mus.cc", | 13 "input_method_mus.cc", |
14 "input_method_mus.h", | 14 "input_method_mus.h", |
15 "native_widget_mus.cc", | 15 "native_widget_mus.cc", |
16 "native_widget_mus.h", | 16 "native_widget_mus.h", |
| 17 "platform_window_mus.cc", |
| 18 "platform_window_mus.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", |
21 "window_manager_client_area_insets.h", | 23 "window_manager_client_area_insets.h", |
22 "window_manager_connection.cc", | 24 "window_manager_connection.cc", |
23 "window_manager_connection.h", | 25 "window_manager_connection.h", |
24 "window_tree_host_mus.cc", | 26 "window_tree_host_mus.cc", |
25 "window_tree_host_mus.h", | 27 "window_tree_host_mus.h", |
26 ] | 28 ] |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
81 "$root_gen_dir/ui/strings/ui_strings_en-US.pak", | 83 "$root_gen_dir/ui/strings/ui_strings_en-US.pak", |
82 "$root_gen_dir/ui/views/resources/views_resources_100_percent.pak", | 84 "$root_gen_dir/ui/views/resources/views_resources_100_percent.pak", |
83 ] | 85 ] |
84 output = "$root_out_dir/views_mus_resources.pak" | 86 output = "$root_out_dir/views_mus_resources.pak" |
85 deps = [ | 87 deps = [ |
86 "//ui/strings", | 88 "//ui/strings", |
87 "//ui/resources", | 89 "//ui/resources", |
88 "//ui/views/resources", | 90 "//ui/views/resources", |
89 ] | 91 ] |
90 } | 92 } |
OLD | NEW |