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/mojo_application.gni") | 6 import("//mojo/public/mojo_application.gni") |
7 import("//mojo/public/mojo_application_manifest.gni") | 7 import("//mojo/public/mojo_application_manifest.gni") |
8 import("//mojo/public/tools/bindings/mojom.gni") | 8 import("//mojo/public/tools/bindings/mojom.gni") |
9 import("//tools/grit/repack.gni") | 9 import("//tools/grit/repack.gni") |
10 | 10 |
(...skipping 21 matching lines...) Expand all Loading... | |
32 "user_wallpaper_delegate_mus.h", | 32 "user_wallpaper_delegate_mus.h", |
33 ] | 33 ] |
34 | 34 |
35 deps = [ | 35 deps = [ |
36 "//ash", | 36 "//ash", |
37 "//ash/public/interfaces", | 37 "//ash/public/interfaces", |
38 "//cc", | 38 "//cc", |
39 "//cc/surfaces", | 39 "//cc/surfaces", |
40 "//components/mus/common:mus_common", | 40 "//components/mus/common:mus_common", |
41 "//components/mus/public/cpp", | 41 "//components/mus/public/cpp", |
42 "//components/mus/public/cpp/input_devices", | |
42 "//components/mus/public/interfaces", | 43 "//components/mus/public/interfaces", |
44 "//components/mus/public/interfaces/input_devices", | |
sadrul
2016/06/13 15:31:06
You shouldn't need to explicitly list this, since
kylechar
2016/06/13 15:51:10
Forgot it was public_dep. Done.
| |
43 "//components/user_manager", | 45 "//components/user_manager", |
44 "//components/wallpaper", | 46 "//components/wallpaper", |
45 "//device/bluetooth", | 47 "//device/bluetooth", |
46 "//mojo/common:common_base", | 48 "//mojo/common:common_base", |
47 "//services/catalog/public/cpp", | 49 "//services/catalog/public/cpp", |
48 "//services/shell/public/cpp", | 50 "//services/shell/public/cpp", |
49 "//services/tracing/public/cpp", | 51 "//services/tracing/public/cpp", |
50 "//ui/app_list/presenter", | 52 "//ui/app_list/presenter", |
51 "//ui/app_list/presenter:mojom", | 53 "//ui/app_list/presenter:mojom", |
52 "//ui/aura", | 54 "//ui/aura", |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
128 | 130 |
129 repack("resources_200") { | 131 repack("resources_200") { |
130 sources = [ | 132 sources = [ |
131 "$root_out_dir/ash_test_resources_200_percent.pak", | 133 "$root_out_dir/ash_test_resources_200_percent.pak", |
132 ] | 134 ] |
133 output = "$root_out_dir/ash_resources_200_percent.pak" | 135 output = "$root_out_dir/ash_resources_200_percent.pak" |
134 deps = [ | 136 deps = [ |
135 "//ash/resources:ash_test_resources_200_percent", | 137 "//ash/resources:ash_test_resources_200_percent", |
136 ] | 138 ] |
137 } | 139 } |
OLD | NEW |