| 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", | 14 "context_menu_mus.cc", |
| 15 "context_menu_mus.h", | 15 "context_menu_mus.h", |
| 16 "keyboard_ui_mus.cc", | 16 "keyboard_ui_mus.cc", |
| 17 "keyboard_ui_mus.h", | 17 "keyboard_ui_mus.h", |
| 18 "pointer_watcher_delegate_mus.cc", | |
| 19 "pointer_watcher_delegate_mus.h", | |
| 20 "shelf_delegate_mus.cc", | 18 "shelf_delegate_mus.cc", |
| 21 "shelf_delegate_mus.h", | 19 "shelf_delegate_mus.h", |
| 22 "shell_delegate_mus.cc", | 20 "shell_delegate_mus.cc", |
| 23 "shell_delegate_mus.h", | 21 "shell_delegate_mus.h", |
| 24 "stub_context_factory.cc", | 22 "stub_context_factory.cc", |
| 25 "stub_context_factory.h", | 23 "stub_context_factory.h", |
| 26 "sysui_application.cc", | 24 "sysui_application.cc", |
| 27 "sysui_application.h", | 25 "sysui_application.h", |
| 28 "user_wallpaper_delegate_mus.cc", | 26 "user_wallpaper_delegate_mus.cc", |
| 29 "user_wallpaper_delegate_mus.h", | 27 "user_wallpaper_delegate_mus.h", |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 "//services/ui", | 94 "//services/ui", |
| 97 ] | 95 ] |
| 98 | 96 |
| 99 # TODO: Load locale-specific strings and explicit resource dependencies. | 97 # TODO: Load locale-specific strings and explicit resource dependencies. |
| 100 resources = [ | 98 resources = [ |
| 101 "$root_out_dir/ash_test_resources_100_percent.pak", | 99 "$root_out_dir/ash_test_resources_100_percent.pak", |
| 102 "$root_out_dir/ash_test_resources_200_percent.pak", | 100 "$root_out_dir/ash_test_resources_200_percent.pak", |
| 103 "$root_out_dir/ash_test_strings.pak", | 101 "$root_out_dir/ash_test_strings.pak", |
| 104 ] | 102 ] |
| 105 } | 103 } |
| OLD | NEW |