| 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/service_manager/public/cpp/service.gni") | 7 import("//services/service_manager/public/cpp/service.gni") |
| 8 import("//services/service_manager/public/service_manifest.gni") | 8 import("//services/service_manager/public/service_manifest.gni") |
| 9 import("//tools/grit/repack.gni") | 9 import("//tools/grit/repack.gni") |
| 10 | 10 |
| 11 group("all") { | 11 group("all") { |
| 12 testonly = true | 12 testonly = true |
| 13 deps = [ | 13 deps = [ |
| 14 ":ui", | 14 ":ui", |
| 15 "//services/ui/ime/test_ime_driver", | 15 "//services/ui/ime/test_ime_driver", |
| 16 "//services/ui/test_wm", | 16 "//services/ui/test_wm", |
| 17 ] | 17 ] |
| 18 } | 18 } |
| 19 | 19 |
| 20 service("ui") { | 20 service("ui") { |
| 21 sources = [ | 21 sources = [ |
| 22 "main.cc", | 22 "main.cc", |
| 23 ] | 23 ] |
| 24 | 24 |
| 25 deps = [ | 25 deps = [ |
| 26 ":lib", | 26 ":lib", |
| 27 "//services/service_manager/public/cpp:sources", | 27 "//services/service_manager/public/cpp:sources", |
| 28 "//services/tracing/public/interfaces", | |
| 29 ] | 28 ] |
| 30 | 29 |
| 31 data_deps = [ | 30 data_deps = [ |
| 32 ":resources_100", | 31 ":resources_100", |
| 33 ":resources_200", | 32 ":resources_200", |
| 34 ":resources_strings", | 33 ":resources_strings", |
| 35 "//services/ui/ime/test_ime_driver", | 34 "//services/ui/ime/test_ime_driver", |
| 36 ] | 35 ] |
| 37 } | 36 } |
| 38 | 37 |
| (...skipping 14 matching lines...) Expand all Loading... |
| 53 deps = [ | 52 deps = [ |
| 54 "//base", | 53 "//base", |
| 55 "//cc", | 54 "//cc", |
| 56 "//cc/surfaces", | 55 "//cc/surfaces", |
| 57 "//components/discardable_memory/public/interfaces", | 56 "//components/discardable_memory/public/interfaces", |
| 58 "//components/discardable_memory/service", | 57 "//components/discardable_memory/service", |
| 59 "//mojo/common:common_base", | 58 "//mojo/common:common_base", |
| 60 "//services/catalog/public/cpp", | 59 "//services/catalog/public/cpp", |
| 61 "//services/catalog/public/interfaces:constants", | 60 "//services/catalog/public/interfaces:constants", |
| 62 "//services/service_manager/public/cpp", | 61 "//services/service_manager/public/cpp", |
| 63 "//services/tracing/public/cpp", | |
| 64 "//services/tracing/public/interfaces:constants", | |
| 65 "//services/ui/clipboard:lib", | 62 "//services/ui/clipboard:lib", |
| 66 "//services/ui/ime:lib", | 63 "//services/ui/ime:lib", |
| 67 "//services/ui/input_devices", | 64 "//services/ui/input_devices", |
| 68 "//services/ui/public/interfaces", | 65 "//services/ui/public/interfaces", |
| 69 "//services/ui/surfaces", | 66 "//services/ui/surfaces", |
| 70 "//services/ui/ws:lib", | 67 "//services/ui/ws:lib", |
| 71 "//services/ui/ws:test_interface", | 68 "//services/ui/ws:test_interface", |
| 72 "//ui/events", | 69 "//ui/events", |
| 73 "//ui/events/ozone:events_ozone_layout", | 70 "//ui/events/ozone:events_ozone_layout", |
| 74 "//ui/gl:gl", | 71 "//ui/gl:gl", |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 | 106 |
| 110 repack("resources_200") { | 107 repack("resources_200") { |
| 111 sources = [ | 108 sources = [ |
| 112 "$root_gen_dir/ui/resources/ui_resources_200_percent.pak", | 109 "$root_gen_dir/ui/resources/ui_resources_200_percent.pak", |
| 113 ] | 110 ] |
| 114 output = "$root_out_dir/mus_app_resources_200.pak" | 111 output = "$root_out_dir/mus_app_resources_200.pak" |
| 115 deps = [ | 112 deps = [ |
| 116 "//ui/resources", | 113 "//ui/resources", |
| 117 ] | 114 ] |
| 118 } | 115 } |
| OLD | NEW |