| 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("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 import("//services/catalog/public/tools/catalog.gni") | 7 import("//services/catalog/public/tools/catalog.gni") |
| 8 import("//services/service_manager/public/cpp/service.gni") | 8 import("//services/service_manager/public/cpp/service.gni") |
| 9 import("//services/service_manager/public/service_manifest.gni") | 9 import("//services/service_manager/public/service_manifest.gni") |
| 10 import("//services/service_manager/public/tools/test/service_test.gni") | 10 import("//services/service_manager/public/tools/test/service_test.gni") |
| (...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 144 "//ui/gfx/geometry/mojo", | 144 "//ui/gfx/geometry/mojo", |
| 145 "//ui/gl", | 145 "//ui/gl", |
| 146 "//ui/platform_window", | 146 "//ui/platform_window", |
| 147 "//ui/platform_window:platform_impls", | 147 "//ui/platform_window:platform_impls", |
| 148 "//ui/platform_window/mojo", | 148 "//ui/platform_window/mojo", |
| 149 ] | 149 ] |
| 150 | 150 |
| 151 if (use_ozone) { | 151 if (use_ozone) { |
| 152 public_deps += [ "//ui/ozone:ozone" ] | 152 public_deps += [ "//ui/ozone:ozone" ] |
| 153 } | 153 } |
| 154 if (is_chromeos) { |
| 155 public_deps += [ "//ui/chromeos/events" ] |
| 156 } |
| 157 |
| 158 # ui service should not depend on below components. |
| 159 assert_no_deps = [ |
| 160 "//ash", |
| 161 "//content/public/browser", |
| 162 "//content/public/common", |
| 163 "//ui/aura", |
| 164 "//ui/views", |
| 165 ] |
| 154 } | 166 } |
| 155 | 167 |
| 156 static_library("test_interface") { | 168 static_library("test_interface") { |
| 157 sources = [ | 169 sources = [ |
| 158 "window_server_test_impl.cc", | 170 "window_server_test_impl.cc", |
| 159 "window_server_test_impl.h", | 171 "window_server_test_impl.h", |
| 160 ] | 172 ] |
| 161 | 173 |
| 162 deps = [ | 174 deps = [ |
| 163 ":lib", | 175 ":lib", |
| (...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 282 service_manifest("mus_ws_unittests_app_manifest") { | 294 service_manifest("mus_ws_unittests_app_manifest") { |
| 283 name = "mus_ws_unittests_app" | 295 name = "mus_ws_unittests_app" |
| 284 source = "mus_ws_unittests_app_manifest.json" | 296 source = "mus_ws_unittests_app_manifest.json" |
| 285 } | 297 } |
| 286 | 298 |
| 287 catalog("mus_ws_unittests_catalog") { | 299 catalog("mus_ws_unittests_catalog") { |
| 288 embedded_services = [ ":mus_ws_unittests_app_manifest" ] | 300 embedded_services = [ ":mus_ws_unittests_app_manifest" ] |
| 289 | 301 |
| 290 standalone_services = [ "//services/ui:manifest" ] | 302 standalone_services = [ "//services/ui:manifest" ] |
| 291 } | 303 } |
| OLD | NEW |