| 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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 "//cc/surfaces", | 88 "//cc/surfaces", |
| 89 "//components/mus/gles2", | 89 "//components/mus/gles2", |
| 90 "//components/mus/public/interfaces", | 90 "//components/mus/public/interfaces", |
| 91 "//components/mus/surfaces", | 91 "//components/mus/surfaces", |
| 92 "//components/mus/ws:lib", | 92 "//components/mus/ws:lib", |
| 93 "//components/resource_provider/public/cpp", | 93 "//components/resource_provider/public/cpp", |
| 94 "//mojo/common:common_base", | 94 "//mojo/common:common_base", |
| 95 "//mojo/services/tracing/public/cpp", | 95 "//mojo/services/tracing/public/cpp", |
| 96 "//mojo/shell/public/cpp", | 96 "//mojo/shell/public/cpp", |
| 97 "//ui/events", | 97 "//ui/events", |
| 98 "//ui/events/ozone:events_ozone_layout", |
| 98 "//ui/gl:gl", | 99 "//ui/gl:gl", |
| 99 "//ui/platform_window:platform_impls", | 100 "//ui/platform_window:platform_impls", |
| 100 "//ui/platform_window:platform_window", | 101 "//ui/platform_window:platform_window", |
| 101 ] | 102 ] |
| 102 | 103 |
| 103 data_deps = [ | 104 data_deps = [ |
| 104 ":resources_100", | 105 ":resources_100", |
| 105 ":resources_200", | 106 ":resources_200", |
| 106 ":resources_strings", | 107 ":resources_strings", |
| 107 "//components/resource_provider", | 108 "//components/resource_provider", |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 139 | 140 |
| 140 repack("resources_200") { | 141 repack("resources_200") { |
| 141 sources = [ | 142 sources = [ |
| 142 "$root_gen_dir/ui/resources/ui_resources_200_percent.pak", | 143 "$root_gen_dir/ui/resources/ui_resources_200_percent.pak", |
| 143 ] | 144 ] |
| 144 output = "$root_out_dir/$mojo_application_subdir/mus/resources/mus_app_resourc
es_200.pak" | 145 output = "$root_out_dir/$mojo_application_subdir/mus/resources/mus_app_resourc
es_200.pak" |
| 145 deps = [ | 146 deps = [ |
| 146 "//ui/resources", | 147 "//ui/resources", |
| 147 ] | 148 ] |
| 148 } | 149 } |
| OLD | NEW |