| 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 13 matching lines...) Expand all Loading... |
| 24 "//gpu/ipc/common:command_buffer_traits", | 24 "//gpu/ipc/common:command_buffer_traits", |
| 25 "//ipc:ipc", | 25 "//ipc:ipc", |
| 26 "//services/service_manager/public/cpp", | 26 "//services/service_manager/public/cpp", |
| 27 "//ui/events:events", | 27 "//ui/events:events", |
| 28 "//ui/gfx/ipc/geometry", | 28 "//ui/gfx/ipc/geometry", |
| 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/gpu/interfaces", |
| 34 "//services/ui/public/interfaces", | 35 "//services/ui/public/interfaces", |
| 35 "//ui/base", | 36 "//ui/base", |
| 36 ] | 37 ] |
| 37 } | 38 } |
| 38 | 39 |
| 39 # GPU related code used by the server-side components (e.g. window server | 40 # GPU related code used by the server-side components (e.g. window server |
| 40 # process, display compositor in the gpu process). | 41 # process, display compositor in the gpu process). |
| 41 source_set("server_gpu") { | 42 source_set("server_gpu") { |
| 42 sources = [ | 43 sources = [ |
| 43 "mus_gpu_memory_buffer_manager.cc", | 44 "mus_gpu_memory_buffer_manager.cc", |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 "task_runner_test_base.cc", | 82 "task_runner_test_base.cc", |
| 82 "task_runner_test_base.h", | 83 "task_runner_test_base.h", |
| 83 ] | 84 ] |
| 84 | 85 |
| 85 deps = [ | 86 deps = [ |
| 86 "//base", | 87 "//base", |
| 87 "//base/test:test_support", | 88 "//base/test:test_support", |
| 88 "//testing/gtest", | 89 "//testing/gtest", |
| 89 ] | 90 ] |
| 90 } | 91 } |
| OLD | NEW |