Chromium Code Reviews| 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 source_set("service_common") { | |
|
sky
2016/11/26 16:42:19
service_common is quite redundant given this is th
sadrul
2016/11/27 01:13:44
The 'mus_common' target above is used by both the
sadrul
2016/11/27 04:16:25
Renamed to 'server_gpu', and added comment here to
| |
| 40 sources = [ | |
| 41 "generic_shared_memory_id_generator.cc", | |
| 42 "generic_shared_memory_id_generator.h", | |
| 43 "mus_gpu_memory_buffer_manager.cc", | |
| 44 "mus_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 "//services/ui/gpu/interfaces", | |
| 55 "//ui/gfx", | |
| 56 ] | |
| 57 } | |
| 58 | |
| 41 source_set("run_all_service_tests") { | 59 source_set("run_all_service_tests") { |
| 42 testonly = true | 60 testonly = true |
| 43 | 61 |
| 44 sources = [ | 62 sources = [ |
| 45 "run_all_service_tests.cc", | 63 "run_all_service_tests.cc", |
| 46 ] | 64 ] |
| 47 | 65 |
| 48 deps = [ | 66 deps = [ |
| 49 "//base/test:test_support", | 67 "//base/test:test_support", |
| 50 "//mojo/edk/system", | 68 "//mojo/edk/system", |
| (...skipping 12 matching lines...) Expand all Loading... | |
| 63 "task_runner_test_base.cc", | 81 "task_runner_test_base.cc", |
| 64 "task_runner_test_base.h", | 82 "task_runner_test_base.h", |
| 65 ] | 83 ] |
| 66 | 84 |
| 67 deps = [ | 85 deps = [ |
| 68 "//base", | 86 "//base", |
| 69 "//base/test:test_support", | 87 "//base/test:test_support", |
| 70 "//testing/gtest", | 88 "//testing/gtest", |
| 71 ] | 89 ] |
| 72 } | 90 } |
| OLD | NEW |