| 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", | 12 "app_list_presenter_mus.cc", |
| 13 "app_list_presenter_mus.h", | 13 "app_list_presenter_mus.h", |
| 14 "context_menu_mus.cc", | |
| 15 "context_menu_mus.h", | |
| 16 "keyboard_ui_mus.cc", | 14 "keyboard_ui_mus.cc", |
| 17 "keyboard_ui_mus.h", | 15 "keyboard_ui_mus.h", |
| 18 "shelf_delegate_mus.cc", | 16 "shelf_delegate_mus.cc", |
| 19 "shelf_delegate_mus.h", | 17 "shelf_delegate_mus.h", |
| 20 "shell_delegate_mus.cc", | 18 "shell_delegate_mus.cc", |
| 21 "shell_delegate_mus.h", | 19 "shell_delegate_mus.h", |
| 22 "stub_context_factory.cc", | 20 "stub_context_factory.cc", |
| 23 "stub_context_factory.h", | 21 "stub_context_factory.h", |
| 24 "sysui_application.cc", | 22 "sysui_application.cc", |
| 25 "sysui_application.h", | 23 "sysui_application.h", |
| 26 "user_wallpaper_delegate_mus.cc", | 24 "wallpaper_delegate_mus.cc", |
| 27 "user_wallpaper_delegate_mus.h", | 25 "wallpaper_delegate_mus.h", |
| 28 ] | 26 ] |
| 29 | 27 |
| 30 deps = [ | 28 deps = [ |
| 31 "//ash", | 29 "//ash", |
| 32 "//ash/public/interfaces", | 30 "//ash/public/interfaces", |
| 33 "//cc", | 31 "//cc", |
| 34 "//cc/surfaces", | 32 "//cc/surfaces", |
| 35 "//components/user_manager", | 33 "//components/user_manager", |
| 36 "//components/wallpaper", | 34 "//components/wallpaper", |
| 37 "//device/bluetooth", | 35 "//device/bluetooth", |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 "//services/ui", | 92 "//services/ui", |
| 95 ] | 93 ] |
| 96 | 94 |
| 97 # TODO: Load locale-specific strings and explicit resource dependencies. | 95 # TODO: Load locale-specific strings and explicit resource dependencies. |
| 98 resources = [ | 96 resources = [ |
| 99 "$root_out_dir/ash_test_resources_100_percent.pak", | 97 "$root_out_dir/ash_test_resources_100_percent.pak", |
| 100 "$root_out_dir/ash_test_resources_200_percent.pak", | 98 "$root_out_dir/ash_test_resources_200_percent.pak", |
| 101 "$root_out_dir/ash_test_strings.pak", | 99 "$root_out_dir/ash_test_strings.pak", |
| 102 ] | 100 ] |
| 103 } | 101 } |
| OLD | NEW |