OLD | NEW |
1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 source_set("client") { | 5 source_set("service") { |
6 sources = [ | 6 visibility = [ |
7 "gpu_jpeg_decode_accelerator_host.cc", | 7 "//media/*", |
8 "gpu_jpeg_decode_accelerator_host.h", | 8 "//content/gpu/*", |
9 "gpu_video_decode_accelerator_host.cc", | 9 "//content/public/gpu/*", |
10 "gpu_video_decode_accelerator_host.h", | |
11 "gpu_video_encode_accelerator_host.cc", | |
12 "gpu_video_encode_accelerator_host.h", | |
13 ] | 10 ] |
14 | 11 |
15 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 12 sources = [ |
| 13 "gpu_jpeg_decode_accelerator.cc", |
| 14 "gpu_jpeg_decode_accelerator.h", |
| 15 "gpu_video_decode_accelerator.cc", |
| 16 "gpu_video_decode_accelerator.h", |
| 17 "gpu_video_decode_accelerator_factory_impl.cc", |
| 18 "gpu_video_decode_accelerator_factory_impl.h", |
| 19 "gpu_video_encode_accelerator.cc", |
| 20 "gpu_video_encode_accelerator.h", |
| 21 "media_channel.cc", |
| 22 "media_channel.h", |
| 23 "media_service.cc", |
| 24 "media_service.h", |
| 25 ] |
16 | 26 |
17 deps = [ | 27 public_deps = [ |
18 "//base", | 28 "//base", |
19 "//gpu/ipc/common", | 29 "//gpu/config", |
20 "//ipc", | 30 "//ipc", |
21 "//media", | 31 "//media", |
22 "//ui/gfx:memory_buffer", | 32 "//media/gpu", |
23 "//ui/gfx/geometry", | 33 ] |
24 "//ui/gfx/ipc", | 34 deps = [ |
| 35 "//gpu/ipc/service", |
| 36 "//media/gpu/ipc/common", |
25 ] | 37 ] |
26 } | 38 } |
OLD | NEW |