| 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/service_manager/public/cpp/service.gni") |
| 8 import("//services/shell/public/service_manifest.gni") | 8 import("//services/service_manager/public/service_manifest.gni") |
| 9 import("//services/shell/public/constants.gni") | 9 import("//services/service_manager/public/constants.gni") |
| 10 import("//tools/grit/repack.gni") | 10 import("//tools/grit/repack.gni") |
| 11 | 11 |
| 12 group("all") { | 12 group("all") { |
| 13 testonly = true | 13 testonly = true |
| 14 deps = [ | 14 deps = [ |
| 15 ":ui", | 15 ":ui", |
| 16 "//services/ui/ime/test_ime_driver", | 16 "//services/ui/ime/test_ime_driver", |
| 17 "//services/ui/test_wm", | 17 "//services/ui/test_wm", |
| 18 ] | 18 ] |
| 19 } | 19 } |
| 20 | 20 |
| 21 service("ui") { | 21 service("ui") { |
| 22 sources = [ | 22 sources = [ |
| 23 "main.cc", | 23 "main.cc", |
| 24 ] | 24 ] |
| 25 | 25 |
| 26 deps = [ | 26 deps = [ |
| 27 ":lib", | 27 ":lib", |
| 28 ":resources_100", | 28 ":resources_100", |
| 29 ":resources_200", | 29 ":resources_200", |
| 30 ":resources_strings", | 30 ":resources_strings", |
| 31 "//services/shell/public/cpp:sources", | 31 "//services/service_manager/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 "//services/ui/ime/test_ime_driver", |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 | 79 |
| 80 public_deps = [ | 80 public_deps = [ |
| 81 "//services/ui/common:mus_common", | 81 "//services/ui/common:mus_common", |
| 82 ] | 82 ] |
| 83 deps = [ | 83 deps = [ |
| 84 "//base", | 84 "//base", |
| 85 "//cc", | 85 "//cc", |
| 86 "//cc/surfaces", | 86 "//cc/surfaces", |
| 87 "//mojo/common:common_base", | 87 "//mojo/common:common_base", |
| 88 "//services/catalog/public/cpp", | 88 "//services/catalog/public/cpp", |
| 89 "//services/shell/public/cpp", | 89 "//services/service_manager/public/cpp", |
| 90 "//services/tracing/public/cpp", | 90 "//services/tracing/public/cpp", |
| 91 "//services/ui/clipboard:lib", | 91 "//services/ui/clipboard:lib", |
| 92 "//services/ui/ime:lib", | 92 "//services/ui/ime:lib", |
| 93 "//services/ui/input_devices", | 93 "//services/ui/input_devices", |
| 94 "//services/ui/public/interfaces", | 94 "//services/ui/public/interfaces", |
| 95 "//services/ui/surfaces", | 95 "//services/ui/surfaces", |
| 96 "//services/ui/ws:lib", | 96 "//services/ui/ws:lib", |
| 97 "//services/ui/ws:test_interface", | 97 "//services/ui/ws:test_interface", |
| 98 "//ui/events", | 98 "//ui/events", |
| 99 "//ui/events/ozone:events_ozone_layout", | 99 "//ui/events/ozone:events_ozone_layout", |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 134 | 134 |
| 135 repack("resources_200") { | 135 repack("resources_200") { |
| 136 sources = [ | 136 sources = [ |
| 137 "$root_gen_dir/ui/resources/ui_resources_200_percent.pak", | 137 "$root_gen_dir/ui/resources/ui_resources_200_percent.pak", |
| 138 ] | 138 ] |
| 139 output = "$root_out_dir/mus_app_resources_200.pak" | 139 output = "$root_out_dir/mus_app_resources_200.pak" |
| 140 deps = [ | 140 deps = [ |
| 141 "//ui/resources", | 141 "//ui/resources", |
| 142 ] | 142 ] |
| 143 } | 143 } |
| OLD | NEW |