Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(363)

Side by Side Diff: ash/sysui/BUILD.gn

Issue 2323063003: mash: Port sysui's WallpaperDelegateMus to mojo:ash. (Closed)
Patch Set: Alternative display info workaround. Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 "shell_delegate_mus.cc", 16 "shell_delegate_mus.cc",
17 "shell_delegate_mus.h", 17 "shell_delegate_mus.h",
18 "stub_context_factory.cc", 18 "stub_context_factory.cc",
19 "stub_context_factory.h", 19 "stub_context_factory.h",
20 "sysui_application.cc", 20 "sysui_application.cc",
21 "sysui_application.h", 21 "sysui_application.h",
22 "wallpaper_delegate_mus.cc",
23 "wallpaper_delegate_mus.h",
24 ] 22 ]
25 23
26 deps = [ 24 deps = [
27 "//ash", 25 "//ash",
28 "//ash/public/interfaces", 26 "//ash/public/interfaces",
29 "//cc", 27 "//cc",
30 "//cc/surfaces", 28 "//cc/surfaces",
31 "//components/user_manager", 29 "//components/user_manager",
32 "//components/wallpaper",
33 "//device/bluetooth", 30 "//device/bluetooth",
34 "//mojo/common:common_base", 31 "//mojo/common:common_base",
35 "//services/catalog/public/cpp", 32 "//services/catalog/public/cpp",
36 "//services/shell/public/cpp", 33 "//services/shell/public/cpp",
37 "//services/tracing/public/cpp", 34 "//services/tracing/public/cpp",
38 "//services/ui/common:mus_common", 35 "//services/ui/common:mus_common",
39 "//services/ui/public/cpp", 36 "//services/ui/public/cpp",
40 "//services/ui/public/cpp/input_devices", 37 "//services/ui/public/cpp/input_devices",
41 "//services/ui/public/interfaces", 38 "//services/ui/public/interfaces",
42 "//ui/app_list/presenter", 39 "//ui/app_list/presenter",
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 "//services/ui", 87 "//services/ui",
91 ] 88 ]
92 89
93 # TODO: Load locale-specific strings and explicit resource dependencies. 90 # TODO: Load locale-specific strings and explicit resource dependencies.
94 resources = [ 91 resources = [
95 "$root_out_dir/ash_test_resources_100_percent.pak", 92 "$root_out_dir/ash_test_resources_100_percent.pak",
96 "$root_out_dir/ash_test_resources_200_percent.pak", 93 "$root_out_dir/ash_test_resources_200_percent.pak",
97 "$root_out_dir/ash_test_strings.pak", 94 "$root_out_dir/ash_test_strings.pak",
98 ] 95 ]
99 } 96 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698