| 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 "native_widget_view_manager.cc", | 17 "native_widget_view_manager.cc", |
| 18 "native_widget_view_manager.h", | 18 "native_widget_view_manager.h", |
| 19 "platform_window_mus.cc", |
| 20 "platform_window_mus.h", |
| 19 "surface_binding.cc", | 21 "surface_binding.cc", |
| 20 "surface_binding.h", | 22 "surface_binding.h", |
| 21 "surface_context_factory.cc", | 23 "surface_context_factory.cc", |
| 22 "surface_context_factory.h", | 24 "surface_context_factory.h", |
| 23 "window_manager_client_area_insets.h", | 25 "window_manager_client_area_insets.h", |
| 24 "window_manager_connection.cc", | 26 "window_manager_connection.cc", |
| 25 "window_manager_connection.h", | 27 "window_manager_connection.h", |
| 26 "window_tree_host_mus.cc", | 28 "window_tree_host_mus.cc", |
| 27 "window_tree_host_mus.h", | 29 "window_tree_host_mus.h", |
| 28 ] | 30 ] |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 "$root_gen_dir/ui/strings/ui_strings_en-US.pak", | 85 "$root_gen_dir/ui/strings/ui_strings_en-US.pak", |
| 84 "$root_gen_dir/ui/views/resources/views_resources_100_percent.pak", | 86 "$root_gen_dir/ui/views/resources/views_resources_100_percent.pak", |
| 85 ] | 87 ] |
| 86 output = "$root_out_dir/views_mus_resources.pak" | 88 output = "$root_out_dir/views_mus_resources.pak" |
| 87 deps = [ | 89 deps = [ |
| 88 "//ui/strings", | 90 "//ui/strings", |
| 89 "//ui/resources", | 91 "//ui/resources", |
| 90 "//ui/views/resources", | 92 "//ui/views/resources", |
| 91 ] | 93 ] |
| 92 } | 94 } |
| OLD | NEW |