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("client") { |
6 sources = [ | 6 sources = [ |
7 "gpu_jpeg_decode_accelerator_host.cc", | 7 "gpu_jpeg_decode_accelerator_host.cc", |
8 "gpu_jpeg_decode_accelerator_host.h", | 8 "gpu_jpeg_decode_accelerator_host.h", |
9 "gpu_video_decode_accelerator_host.cc", | 9 "gpu_video_decode_accelerator_host.cc", |
10 "gpu_video_decode_accelerator_host.h", | 10 "gpu_video_decode_accelerator_host.h", |
11 "gpu_video_encode_accelerator_host.cc", | 11 "gpu_video_encode_accelerator_host.cc", |
12 "gpu_video_encode_accelerator_host.h", | 12 "gpu_video_encode_accelerator_host.h", |
13 ] | 13 ] |
14 | 14 |
15 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 15 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
16 | 16 |
17 deps = [ | 17 deps = [ |
18 "//base", | 18 "//base", |
19 "//gpu/ipc/common", | 19 "//gpu/ipc/common", |
20 "//ipc", | 20 "//ipc", |
21 "//media", | 21 "//media", |
| 22 "//media:media_features", |
22 "//ui/gfx:memory_buffer", | 23 "//ui/gfx:memory_buffer", |
23 "//ui/gfx/geometry", | 24 "//ui/gfx/geometry", |
24 "//ui/gfx/ipc", | 25 "//ui/gfx/ipc", |
25 ] | 26 ] |
26 } | 27 } |
OLD | NEW |