| 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("//services/service_manager/public/service_manifest.gni") | 6 import("//services/service_manager/public/service_manifest.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 | 8 |
| 9 source_set("mus_common") { | 9 source_set("mus_common") { |
| 10 sources = [ | 10 sources = [ |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 ] | 29 ] |
| 30 | 30 |
| 31 public_deps = [ | 31 public_deps = [ |
| 32 "//mojo/public/cpp/bindings", | 32 "//mojo/public/cpp/bindings", |
| 33 "//mojo/public/cpp/system", | 33 "//mojo/public/cpp/system", |
| 34 "//services/ui/public/interfaces", | 34 "//services/ui/public/interfaces", |
| 35 "//ui/base", | 35 "//ui/base", |
| 36 ] | 36 ] |
| 37 } | 37 } |
| 38 | 38 |
| 39 # GPU related code used by the server-side components (e.g. window server | |
| 40 # process, frame sink manager in the gpu process). | |
| 41 source_set("server_gpu") { | |
| 42 sources = [ | |
| 43 "server_gpu_memory_buffer_manager.cc", | |
| 44 "server_gpu_memory_buffer_manager.h", | |
| 45 ] | |
| 46 | |
| 47 deps = [ | |
| 48 "//gpu/ipc/client", | |
| 49 ] | |
| 50 | |
| 51 public_deps = [ | |
| 52 "//gpu/command_buffer/client", | |
| 53 "//gpu/ipc/common", | |
| 54 "//gpu/ipc/host", | |
| 55 "//services/ui/gpu/interfaces", | |
| 56 "//ui/gfx", | |
| 57 ] | |
| 58 } | |
| 59 | |
| 60 source_set("task_runner_test_base") { | 39 source_set("task_runner_test_base") { |
| 61 testonly = true | 40 testonly = true |
| 62 | 41 |
| 63 sources = [ | 42 sources = [ |
| 64 "task_runner_test_base.cc", | 43 "task_runner_test_base.cc", |
| 65 "task_runner_test_base.h", | 44 "task_runner_test_base.h", |
| 66 ] | 45 ] |
| 67 | 46 |
| 68 deps = [ | 47 deps = [ |
| 69 "//base", | 48 "//base", |
| 70 "//base/test:test_support", | 49 "//base/test:test_support", |
| 71 "//testing/gtest", | 50 "//testing/gtest", |
| 72 ] | 51 ] |
| 73 } | 52 } |
| OLD | NEW |