OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") | 7 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") |
8 import("//tools/grit/repack.gni") | 8 import("//tools/grit/repack.gni") |
9 | 9 |
10 mojo_native_application("client") { | 10 mojo_native_application("client") { |
(...skipping 25 matching lines...) Expand all Loading... |
36 resources = [ "$root_out_dir/example_resources.pak" ] | 36 resources = [ "$root_out_dir/example_resources.pak" ] |
37 | 37 |
38 data_deps = [ | 38 data_deps = [ |
39 "//components/mus", | 39 "//components/mus", |
40 ] | 40 ] |
41 } | 41 } |
42 | 42 |
43 repack("resources") { | 43 repack("resources") { |
44 sources = [ | 44 sources = [ |
45 "$root_gen_dir/ui/resources/ui_resources_100_percent.pak", | 45 "$root_gen_dir/ui/resources/ui_resources_100_percent.pak", |
| 46 "$root_gen_dir/ui/strings/app_locale_settings_en-US.pak", |
| 47 "$root_gen_dir/ui/strings/ui_strings_en-US.pak", |
46 "$root_gen_dir/ui/views/resources/views_resources_100_percent.pak", | 48 "$root_gen_dir/ui/views/resources/views_resources_100_percent.pak", |
47 ] | 49 ] |
48 output = "$root_out_dir/example_resources.pak" | 50 output = "$root_out_dir/example_resources.pak" |
49 deps = [ | 51 deps = [ |
| 52 "//ui/strings", |
50 "//ui/resources", | 53 "//ui/resources", |
51 "//ui/views/resources", | 54 "//ui/views/resources", |
52 ] | 55 ] |
53 } | 56 } |
OLD | NEW |