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 static_library("gpu") { | 5 static_library("gpu") { |
6 deps = [ | 6 deps = [ |
7 "//components/metrics:child_call_stacks", | 7 "//components/metrics:child_call_stacks", |
8 "//content/public/common", | 8 "//content/public/common", |
9 "//content/public/gpu", | 9 "//content/public/gpu", |
10 "//gpu/command_buffer/service", | 10 "//gpu/command_buffer/service", |
11 "//media", | 11 "//media", |
12 "//media/gpu", | 12 "//media/gpu", |
13 ] | 13 ] |
14 | 14 |
15 sources = [ | 15 sources = [ |
16 "chrome_content_gpu_client.cc", | 16 "chrome_content_gpu_client.cc", |
17 "chrome_content_gpu_client.h", | 17 "chrome_content_gpu_client.h", |
18 ] | 18 ] |
19 | 19 |
20 if (is_chromeos) { | 20 if (is_chromeos) { |
21 deps += [ "//components/arc:arc_bindings" ] | 21 deps += [ "//components/arc:arc_bindings" ] |
22 sources += [ | 22 sources += [ |
23 "arc_gpu_video_decode_accelerator.cc", | 23 "arc_gpu_video_decode_accelerator.cc", |
24 "arc_gpu_video_decode_accelerator.h", | 24 "arc_gpu_video_decode_accelerator.h", |
25 "arc_video_decode_accelerator.h", | 25 "arc_video_decode_accelerator.h", |
26 "gpu_arc_video_decode_accelerator.cc", | 26 "gpu_arc_video_decode_accelerator.cc", |
27 "gpu_arc_video_decode_accelerator.h", | 27 "gpu_arc_video_decode_accelerator.h", |
| 28 "gpu_arc_video_encode_accelerator.cc", |
| 29 "gpu_arc_video_encode_accelerator.h", |
28 ] | 30 ] |
29 } | 31 } |
30 } | 32 } |
OLD | NEW |