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("//services/shell/public/cpp/service.gni") | 7 import("//services/shell/public/cpp/service.gni") |
8 import("//services/shell/public/service_manifest.gni") | 8 import("//services/shell/public/service_manifest.gni") |
9 import("//services/shell/public/constants.gni") | 9 import("//services/shell/public/constants.gni") |
10 import("//tools/grit/repack.gni") | 10 import("//tools/grit/repack.gni") |
(...skipping 20 matching lines...) Expand all Loading... |
31 "//services/shell/public/cpp:sources", | 31 "//services/shell/public/cpp:sources", |
32 "//services/tracing/public/interfaces", | 32 "//services/tracing/public/interfaces", |
33 ] | 33 ] |
34 | 34 |
35 if (is_win) { | 35 if (is_win) { |
36 deps += [ ":copy_gl_libraries" ] | 36 deps += [ ":copy_gl_libraries" ] |
37 } | 37 } |
38 | 38 |
39 data_deps = [ | 39 data_deps = [ |
40 ":manifest", | 40 ":manifest", |
| 41 "//services/ui/ime/test_ime_driver", |
41 ] | 42 ] |
42 | 43 |
43 resources = [ | 44 resources = [ |
44 "$root_out_dir/mus_app_resources_strings.pak", | 45 "$root_out_dir/mus_app_resources_strings.pak", |
45 "$root_out_dir/mus_app_resources_100.pak", | 46 "$root_out_dir/mus_app_resources_100.pak", |
46 "$root_out_dir/mus_app_resources_200.pak", | 47 "$root_out_dir/mus_app_resources_200.pak", |
47 ] | 48 ] |
48 } | 49 } |
49 | 50 |
50 service_manifest("manifest") { | 51 service_manifest("manifest") { |
(...skipping 82 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 |