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