| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 import("//mojo/public/mojo_application.gni") | 7 import("//mojo/public/mojo_application.gni") |
| 8 import("//mojo/public/mojo_application_manifest.gni") | 8 import("//mojo/public/mojo_application_manifest.gni") |
| 9 import("//mojo/public/mojo_constants.gni") | 9 import("//mojo/public/mojo_constants.gni") |
| 10 import("//tools/grit/repack.gni") | 10 import("//tools/grit/repack.gni") |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 "//components/mus/common:mus_common", | 79 "//components/mus/common:mus_common", |
| 80 ] | 80 ] |
| 81 deps = [ | 81 deps = [ |
| 82 "//base", | 82 "//base", |
| 83 "//cc", | 83 "//cc", |
| 84 "//cc/surfaces", | 84 "//cc/surfaces", |
| 85 "//components/mus/clipboard:lib", | 85 "//components/mus/clipboard:lib", |
| 86 "//components/mus/gles2", | 86 "//components/mus/gles2", |
| 87 "//components/mus/gpu", | 87 "//components/mus/gpu", |
| 88 "//components/mus/gpu/display_compositor", | 88 "//components/mus/gpu/display_compositor", |
| 89 "//components/mus/input_devices", |
| 89 "//components/mus/public/interfaces", | 90 "//components/mus/public/interfaces", |
| 90 "//components/mus/surfaces", | 91 "//components/mus/surfaces", |
| 91 "//components/mus/ws:lib", | 92 "//components/mus/ws:lib", |
| 92 "//components/mus/ws:test_interface", | 93 "//components/mus/ws:test_interface", |
| 93 "//mojo/common:common_base", | 94 "//mojo/common:common_base", |
| 94 "//services/catalog/public/cpp", | 95 "//services/catalog/public/cpp", |
| 95 "//services/shell/public/cpp", | 96 "//services/shell/public/cpp", |
| 96 "//services/tracing/public/cpp", | 97 "//services/tracing/public/cpp", |
| 97 "//ui/events", | 98 "//ui/events", |
| 98 "//ui/events/ozone:events_ozone_layout", | 99 "//ui/events/ozone:events_ozone_layout", |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 | 134 |
| 134 repack("resources_200") { | 135 repack("resources_200") { |
| 135 sources = [ | 136 sources = [ |
| 136 "$root_gen_dir/ui/resources/ui_resources_200_percent.pak", | 137 "$root_gen_dir/ui/resources/ui_resources_200_percent.pak", |
| 137 ] | 138 ] |
| 138 output = "$root_out_dir/mus_app_resources_200.pak" | 139 output = "$root_out_dir/mus_app_resources_200.pak" |
| 139 deps = [ | 140 deps = [ |
| 140 "//ui/resources", | 141 "//ui/resources", |
| 141 ] | 142 ] |
| 142 } | 143 } |
| OLD | NEW |