| 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 15 matching lines...) Expand all Loading... |
| 26 "sysui_application.h", | 26 "sysui_application.h", |
| 27 ] | 27 ] |
| 28 | 28 |
| 29 deps = [ | 29 deps = [ |
| 30 "//ash", | 30 "//ash", |
| 31 "//cc", | 31 "//cc", |
| 32 "//cc/surfaces", | 32 "//cc/surfaces", |
| 33 "//components/mus/common:mus_common", | 33 "//components/mus/common:mus_common", |
| 34 "//components/mus/public/cpp", | 34 "//components/mus/public/cpp", |
| 35 "//components/mus/public/interfaces", | 35 "//components/mus/public/interfaces", |
| 36 "//components/resource_provider/public/cpp", | |
| 37 "//components/user_manager", | 36 "//components/user_manager", |
| 38 "//device/bluetooth", | 37 "//device/bluetooth", |
| 39 "//mash/shelf/public/interfaces", | 38 "//mash/shelf/public/interfaces", |
| 40 "//mash/wm/public/interfaces", | 39 "//mash/wm/public/interfaces", |
| 41 "//mojo/common:common_base", | 40 "//mojo/common:common_base", |
| 42 "//mojo/converters/geometry", | 41 "//mojo/converters/geometry", |
| 43 "//mojo/converters/input_events", | 42 "//mojo/converters/input_events", |
| 43 "//services/catalog/public/cpp", |
| 44 "//services/shell/public/cpp", | 44 "//services/shell/public/cpp", |
| 45 "//services/tracing/public/cpp", | 45 "//services/tracing/public/cpp", |
| 46 "//skia/public", | 46 "//skia/public", |
| 47 "//ui/app_list/presenter", | 47 "//ui/app_list/presenter", |
| 48 "//ui/aura", | 48 "//ui/aura", |
| 49 "//ui/events", | 49 "//ui/events", |
| 50 "//ui/events/devices", | 50 "//ui/events/devices", |
| 51 "//ui/gfx", | 51 "//ui/gfx", |
| 52 "//ui/gfx/geometry", | 52 "//ui/gfx/geometry", |
| 53 "//ui/keyboard:mojom", | 53 "//ui/keyboard:mojom", |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 | 117 |
| 118 repack("resources_200") { | 118 repack("resources_200") { |
| 119 sources = [ | 119 sources = [ |
| 120 "$root_out_dir/ash_test_resources_200_percent.pak", | 120 "$root_out_dir/ash_test_resources_200_percent.pak", |
| 121 ] | 121 ] |
| 122 output = "$root_out_dir/ash_resources_200_percent.pak" | 122 output = "$root_out_dir/ash_resources_200_percent.pak" |
| 123 deps = [ | 123 deps = [ |
| 124 "//ash/resources:ash_test_resources_200_percent", | 124 "//ash/resources:ash_test_resources_200_percent", |
| 125 ] | 125 ] |
| 126 } | 126 } |
| OLD | NEW |