| 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/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 | 9 |
| 10 static_library("lib") { | 10 static_library("lib") { |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 "window_tree_binding.cc", | 106 "window_tree_binding.cc", |
| 107 "window_tree_binding.h", | 107 "window_tree_binding.h", |
| 108 "window_tree_factory.cc", | 108 "window_tree_factory.cc", |
| 109 "window_tree_factory.h", | 109 "window_tree_factory.h", |
| 110 "window_tree_host_factory.cc", | 110 "window_tree_host_factory.cc", |
| 111 "window_tree_host_factory.h", | 111 "window_tree_host_factory.h", |
| 112 ] | 112 ] |
| 113 | 113 |
| 114 deps = [ | 114 deps = [ |
| 115 "//gpu/command_buffer/client", | 115 "//gpu/command_buffer/client", |
| 116 "//gpu/command_buffer/client:gles2_interface", |
| 116 "//gpu/ipc/client", | 117 "//gpu/ipc/client", |
| 117 "//gpu/ipc/common", | 118 "//gpu/ipc/common", |
| 118 "//services/ui/gpu", # TODO(sad): Temporary until GPU process split. | 119 "//services/ui/gpu", # TODO(sad): Temporary until GPU process split. |
| 119 "//services/ui/gpu/interfaces", | 120 "//services/ui/gpu/interfaces", |
| 120 ] | 121 ] |
| 121 | 122 |
| 122 public_deps = [ | 123 public_deps = [ |
| 123 "//base", | 124 "//base", |
| 124 "//cc", | 125 "//cc", |
| 125 "//cc/ipc:internal_interfaces", | 126 "//cc/ipc:internal_interfaces", |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 260 | 261 |
| 261 data_deps = [ | 262 data_deps = [ |
| 262 ":mus_ws_unittests_app_manifest", | 263 ":mus_ws_unittests_app_manifest", |
| 263 ] | 264 ] |
| 264 } | 265 } |
| 265 | 266 |
| 266 service_manifest("mus_ws_unittests_app_manifest") { | 267 service_manifest("mus_ws_unittests_app_manifest") { |
| 267 name = "mus_ws_unittests_app" | 268 name = "mus_ws_unittests_app" |
| 268 source = "mus_ws_unittests_app_manifest.json" | 269 source = "mus_ws_unittests_app_manifest.json" |
| 269 } | 270 } |
| OLD | NEW |