Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1334)

Side by Side Diff: chrome/gpu/BUILD.gn

Issue 2892863002: ArcBridge: Add VideoEncodeAccelerator implementation. (Closed)
Patch Set: add missing public_dep to the typemap file. Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/browser/chromeos/arc/video/gpu_arc_video_service_host.cc ('k') | chrome/gpu/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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_video_decode_accelerator.h", 23 "arc_video_decode_accelerator.h",
24 "chrome_arc_video_decode_accelerator.cc", 24 "chrome_arc_video_decode_accelerator.cc",
25 "chrome_arc_video_decode_accelerator.h", 25 "chrome_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 }
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/arc/video/gpu_arc_video_service_host.cc ('k') | chrome/gpu/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698