| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 import("//mojo/public/tools/bindings/mojom.gni") | 6 import("//mojo/public/tools/bindings/mojom.gni") |
| 7 import("//services/shell/public/cpp/service.gni") | 7 import("//services/shell/public/cpp/service.gni") |
| 8 import("//services/shell/public/service_manifest.gni") | 8 import("//services/shell/public/service_manifest.gni") |
| 9 | 9 |
| 10 source_set("lib") { | 10 source_set("lib") { |
| 11 sources = [ | 11 sources = [ |
| 12 "app_list_presenter_mus.cc", | |
| 13 "app_list_presenter_mus.h", | |
| 14 "keyboard_ui_mus.cc", | 12 "keyboard_ui_mus.cc", |
| 15 "keyboard_ui_mus.h", | 13 "keyboard_ui_mus.h", |
| 16 "shell_delegate_mus.cc", | 14 "shell_delegate_mus.cc", |
| 17 "shell_delegate_mus.h", | 15 "shell_delegate_mus.h", |
| 18 "stub_context_factory.cc", | 16 "stub_context_factory.cc", |
| 19 "stub_context_factory.h", | 17 "stub_context_factory.h", |
| 20 "sysui_application.cc", | 18 "sysui_application.cc", |
| 21 "sysui_application.h", | 19 "sysui_application.h", |
| 22 ] | 20 ] |
| 23 | 21 |
| 24 deps = [ | 22 deps = [ |
| 25 "//ash", | 23 "//ash", |
| 26 "//ash/public/interfaces", | 24 "//ash/public/interfaces", |
| 27 "//cc", | 25 "//cc", |
| 28 "//cc/surfaces", | 26 "//cc/surfaces", |
| 29 "//components/user_manager", | 27 "//components/user_manager", |
| 30 "//device/bluetooth", | 28 "//device/bluetooth", |
| 31 "//mojo/common:common_base", | 29 "//mojo/common:common_base", |
| 32 "//services/catalog/public/cpp", | 30 "//services/catalog/public/cpp", |
| 33 "//services/shell/public/cpp", | 31 "//services/shell/public/cpp", |
| 34 "//services/tracing/public/cpp", | 32 "//services/tracing/public/cpp", |
| 35 "//services/ui/common:mus_common", | 33 "//services/ui/common:mus_common", |
| 36 "//services/ui/public/cpp", | 34 "//services/ui/public/cpp", |
| 37 "//services/ui/public/cpp/input_devices", | 35 "//services/ui/public/cpp/input_devices", |
| 38 "//services/ui/public/interfaces", | 36 "//services/ui/public/interfaces", |
| 39 "//ui/app_list/presenter", | |
| 40 "//ui/app_list/presenter:mojom", | |
| 41 "//ui/aura", | 37 "//ui/aura", |
| 42 "//ui/events", | 38 "//ui/events", |
| 43 "//ui/events/devices", | 39 "//ui/events/devices", |
| 44 "//ui/gfx", | 40 "//ui/gfx", |
| 45 "//ui/gfx/geometry", | 41 "//ui/gfx/geometry", |
| 46 "//ui/gfx/geometry/mojo", | 42 "//ui/gfx/geometry/mojo", |
| 47 "//ui/keyboard:mojom", | 43 "//ui/keyboard:mojom", |
| 48 "//ui/message_center", | 44 "//ui/message_center", |
| 49 "//ui/platform_window/stub", | 45 "//ui/platform_window/stub", |
| 50 "//ui/resources", | 46 "//ui/resources", |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 "//services/ui", | 83 "//services/ui", |
| 88 ] | 84 ] |
| 89 | 85 |
| 90 # TODO: Load locale-specific strings and explicit resource dependencies. | 86 # TODO: Load locale-specific strings and explicit resource dependencies. |
| 91 resources = [ | 87 resources = [ |
| 92 "$root_out_dir/ash_test_resources_100_percent.pak", | 88 "$root_out_dir/ash_test_resources_100_percent.pak", |
| 93 "$root_out_dir/ash_test_resources_200_percent.pak", | 89 "$root_out_dir/ash_test_resources_200_percent.pak", |
| 94 "$root_out_dir/ash_test_strings.pak", | 90 "$root_out_dir/ash_test_strings.pak", |
| 95 ] | 91 ] |
| 96 } | 92 } |
| OLD | NEW |