Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(500)

Side by Side Diff: services/ui/ws/BUILD.gn

Issue 2712203002: c++ / mojo changes for 'external window mode'
Patch Set: addressed sky/fwang feedback (take 5), simpler mus_demo changes / passing unittests Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 "window_server_delegate.cc", 97 "window_server_delegate.cc",
98 "window_server_delegate.h", 98 "window_server_delegate.h",
99 "window_tree.cc", 99 "window_tree.cc",
100 "window_tree.h", 100 "window_tree.h",
101 "window_tree_binding.cc", 101 "window_tree_binding.cc",
102 "window_tree_binding.h", 102 "window_tree_binding.h",
103 "window_tree_factory.cc", 103 "window_tree_factory.cc",
104 "window_tree_factory.h", 104 "window_tree_factory.h",
105 "window_tree_host_factory.cc", 105 "window_tree_host_factory.cc",
106 "window_tree_host_factory.h", 106 "window_tree_host_factory.h",
107 "window_tree_host_factory_registrar.cc",
108 "window_tree_host_factory_registrar.h",
107 ] 109 ]
108 110
109 deps = [ 111 deps = [
110 "//gpu/command_buffer/client", 112 "//gpu/command_buffer/client",
111 "//gpu/command_buffer/client:gles2_interface", 113 "//gpu/command_buffer/client:gles2_interface",
112 "//gpu/ipc/client", 114 "//gpu/ipc/client",
113 "//gpu/ipc/common", 115 "//gpu/ipc/common",
114 "//services/ui/gpu", # TODO(sad): Temporary until GPU process split. 116 "//services/ui/gpu", # TODO(sad): Temporary until GPU process split.
115 "//services/ui/gpu/interfaces", 117 "//services/ui/gpu/interfaces",
116 ] 118 ]
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
263 service_manifest("mus_ws_unittests_app_manifest") { 265 service_manifest("mus_ws_unittests_app_manifest") {
264 name = "mus_ws_unittests_app" 266 name = "mus_ws_unittests_app"
265 source = "mus_ws_unittests_app_manifest.json" 267 source = "mus_ws_unittests_app_manifest.json"
266 } 268 }
267 269
268 catalog("mus_ws_unittests_catalog") { 270 catalog("mus_ws_unittests_catalog") {
269 embedded_services = [ ":mus_ws_unittests_app_manifest" ] 271 embedded_services = [ ":mus_ws_unittests_app_manifest" ]
270 272
271 standalone_services = [ "//services/ui:manifest" ] 273 standalone_services = [ "//services/ui:manifest" ]
272 } 274 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698