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 "input_method_mus.cc", | 11 "input_method_mus.cc", |
12 "input_method_mus.h", | 12 "input_method_mus.h", |
13 "native_widget_mus.cc", | 13 "native_widget_mus.cc", |
14 "native_widget_mus.h", | 14 "native_widget_mus.h", |
15 "native_widget_view_manager.cc", | 15 "native_widget_view_manager.cc", |
16 "native_widget_view_manager.h", | 16 "native_widget_view_manager.h", |
17 "surface_binding.cc", | 17 "surface_binding.cc", |
18 "surface_binding.h", | 18 "surface_binding.h", |
19 "surface_context_factory.cc", | 19 "surface_context_factory.cc", |
20 "surface_context_factory.h", | 20 "surface_context_factory.h", |
| 21 "window_manager_client_area_insets.h", |
21 "window_manager_connection.cc", | 22 "window_manager_connection.cc", |
22 "window_manager_connection.h", | 23 "window_manager_connection.h", |
23 "window_tree_host_mus.cc", | 24 "window_tree_host_mus.cc", |
24 "window_tree_host_mus.h", | 25 "window_tree_host_mus.h", |
25 ] | 26 ] |
26 | 27 |
27 public_deps = [ | 28 public_deps = [ |
28 ":resources", | 29 ":resources", |
29 "//components/mus/public/cpp", | 30 "//components/mus/public/cpp", |
30 ] | 31 ] |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
77 "$root_gen_dir/ui/strings/ui_strings_en-US.pak", | 78 "$root_gen_dir/ui/strings/ui_strings_en-US.pak", |
78 "$root_gen_dir/ui/views/resources/views_resources_100_percent.pak", | 79 "$root_gen_dir/ui/views/resources/views_resources_100_percent.pak", |
79 ] | 80 ] |
80 output = "$root_out_dir/views_mus_resources.pak" | 81 output = "$root_out_dir/views_mus_resources.pak" |
81 deps = [ | 82 deps = [ |
82 "//ui/strings", | 83 "//ui/strings", |
83 "//ui/resources", | 84 "//ui/resources", |
84 "//ui/views/resources", | 85 "//ui/views/resources", |
85 ] | 86 ] |
86 } | 87 } |
OLD | NEW |