| 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("//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 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 resources = [ "$root_out_dir/mash_wm_resources.pak" ] | 131 resources = [ "$root_out_dir/mash_wm_resources.pak" ] |
| 132 } | 132 } |
| 133 | 133 |
| 134 mojo_application_manifest("manifest") { | 134 mojo_application_manifest("manifest") { |
| 135 application_name = "desktop_wm" | 135 application_name = "desktop_wm" |
| 136 source = "manifest.json" | 136 source = "manifest.json" |
| 137 } | 137 } |
| 138 | 138 |
| 139 repack("resources") { | 139 repack("resources") { |
| 140 sources = [ | 140 sources = [ |
| 141 "$root_gen_dir/ash/wm/common/resources/ash_wm_common_resources_100_percent.p
ak", |
| 141 "$root_gen_dir/mash/wm/resources/mash_wm_resources_100_percent.pak", | 142 "$root_gen_dir/mash/wm/resources/mash_wm_resources_100_percent.pak", |
| 142 "$root_gen_dir/ui/resources/ui_resources_100_percent.pak", | 143 "$root_gen_dir/ui/resources/ui_resources_100_percent.pak", |
| 143 "$root_gen_dir/ui/strings/app_locale_settings_en-US.pak", | 144 "$root_gen_dir/ui/strings/app_locale_settings_en-US.pak", |
| 144 "$root_gen_dir/ui/strings/ui_strings_en-US.pak", | 145 "$root_gen_dir/ui/strings/ui_strings_en-US.pak", |
| 145 "$root_gen_dir/ui/views/resources/views_resources_100_percent.pak", | 146 "$root_gen_dir/ui/views/resources/views_resources_100_percent.pak", |
| 146 ] | 147 ] |
| 147 output = "$root_out_dir/mash_wm_resources.pak" | 148 output = "$root_out_dir/mash_wm_resources.pak" |
| 148 deps = [ | 149 deps = [ |
| 150 "//ash/wm/common/resources", |
| 149 "//mash/wm/resources", | 151 "//mash/wm/resources", |
| 150 "//ui/resources", | 152 "//ui/resources", |
| 151 "//ui/strings", | 153 "//ui/strings", |
| 152 "//ui/views/mus:resources", | 154 "//ui/views/mus:resources", |
| 153 "//ui/views/resources", | 155 "//ui/views/resources", |
| 154 ] | 156 ] |
| 155 } | 157 } |
| 156 | 158 |
| 157 source_set("unittests") { | 159 source_set("unittests") { |
| 158 testonly = true | 160 testonly = true |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 193 "//ui/mojo/geometry:interfaces", | 195 "//ui/mojo/geometry:interfaces", |
| 194 "//ui/mojo/geometry:util", | 196 "//ui/mojo/geometry:util", |
| 195 "//ui/views/mus", | 197 "//ui/views/mus", |
| 196 ] | 198 ] |
| 197 | 199 |
| 198 data_deps = [ | 200 data_deps = [ |
| 199 ":wm", | 201 ":wm", |
| 200 "//mash/quick_launch", | 202 "//mash/quick_launch", |
| 201 ] | 203 ] |
| 202 } | 204 } |
| OLD | NEW |