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