| 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 = [ |
| 11 "event_matcher_util.cc", | 11 "event_matcher_util.cc", |
| 12 "event_matcher_util.h", | 12 "event_matcher_util.h", |
| 13 "generic_shared_memory_id_generator.cc", | |
| 14 "generic_shared_memory_id_generator.h", | |
| 15 "switches.cc", | 13 "switches.cc", |
| 16 "switches.h", | 14 "switches.h", |
| 17 "transient_window_utils.h", | 15 "transient_window_utils.h", |
| 18 "types.h", | 16 "types.h", |
| 19 "util.h", | 17 "util.h", |
| 20 ] | 18 ] |
| 21 | 19 |
| 22 deps = [ | 20 deps = [ |
| 23 "//gpu/command_buffer/client", | 21 "//gpu/command_buffer/client", |
| 24 "//gpu/config", | 22 "//gpu/config", |
| 25 "//gpu/ipc/client", | 23 "//gpu/ipc/client", |
| 26 "//gpu/ipc/common:command_buffer_traits", | 24 "//gpu/ipc/common:command_buffer_traits", |
| 27 "//ipc:ipc", | 25 "//ipc:ipc", |
| 28 "//services/service_manager/public/cpp", | 26 "//services/service_manager/public/cpp", |
| 29 "//ui/events:events", | 27 "//ui/events:events", |
| 30 "//ui/gfx/ipc/geometry", | 28 "//ui/gfx/ipc/geometry", |
| 31 ] | 29 ] |
| 32 | 30 |
| 33 public_deps = [ | 31 public_deps = [ |
| 34 "//mojo/public/cpp/bindings", | 32 "//mojo/public/cpp/bindings", |
| 35 "//mojo/public/cpp/system", | 33 "//mojo/public/cpp/system", |
| 36 "//services/ui/public/interfaces", | 34 "//services/ui/public/interfaces", |
| 37 "//ui/base", | 35 "//ui/base", |
| 38 ] | 36 ] |
| 39 } | 37 } |
| 40 | 38 |
| 39 # GPU related code used by the server-side components (e.g. window server |
| 40 # process, display compositor in the gpu process). |
| 41 source_set("server_gpu") { |
| 42 sources = [ |
| 43 "generic_shared_memory_id_generator.cc", |
| 44 "generic_shared_memory_id_generator.h", |
| 45 "mus_gpu_memory_buffer_manager.cc", |
| 46 "mus_gpu_memory_buffer_manager.h", |
| 47 ] |
| 48 |
| 49 deps = [ |
| 50 "//gpu/ipc/client", |
| 51 ] |
| 52 |
| 53 public_deps = [ |
| 54 "//gpu/command_buffer/client", |
| 55 "//gpu/ipc/common", |
| 56 "//services/ui/gpu/interfaces", |
| 57 "//ui/gfx", |
| 58 ] |
| 59 } |
| 60 |
| 41 source_set("run_all_service_tests") { | 61 source_set("run_all_service_tests") { |
| 42 testonly = true | 62 testonly = true |
| 43 | 63 |
| 44 sources = [ | 64 sources = [ |
| 45 "run_all_service_tests.cc", | 65 "run_all_service_tests.cc", |
| 46 ] | 66 ] |
| 47 | 67 |
| 48 deps = [ | 68 deps = [ |
| 49 "//base/test:test_support", | 69 "//base/test:test_support", |
| 50 "//mojo/edk/system", | 70 "//mojo/edk/system", |
| (...skipping 12 matching lines...) Expand all Loading... |
| 63 "task_runner_test_base.cc", | 83 "task_runner_test_base.cc", |
| 64 "task_runner_test_base.h", | 84 "task_runner_test_base.h", |
| 65 ] | 85 ] |
| 66 | 86 |
| 67 deps = [ | 87 deps = [ |
| 68 "//base", | 88 "//base", |
| 69 "//base/test:test_support", | 89 "//base/test:test_support", |
| 70 "//testing/gtest", | 90 "//testing/gtest", |
| 71 ] | 91 ] |
| 72 } | 92 } |
| OLD | NEW |