mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 14:26:09 +03:00
33 lines
879 B
Plaintext
33 lines
879 B
Plaintext
|
# Copyright 2016 The Chromium Authors. All rights reserved.
|
||
|
# Use of this source code is governed by a BSD-style license that can be
|
||
|
# found in the LICENSE file.
|
||
|
|
||
|
static_library("gpu") {
|
||
|
deps = [
|
||
|
"//components/metrics:child_call_stacks",
|
||
|
"//content/public/common",
|
||
|
"//content/public/gpu",
|
||
|
"//gpu/command_buffer/service",
|
||
|
"//media",
|
||
|
"//media/gpu",
|
||
|
]
|
||
|
|
||
|
sources = [
|
||
|
"chrome_content_gpu_client.cc",
|
||
|
"chrome_content_gpu_client.h",
|
||
|
]
|
||
|
|
||
|
if (is_chromeos) {
|
||
|
deps += [ "//components/arc:arc_bindings" ]
|
||
|
sources += [
|
||
|
"arc_video_decode_accelerator.h",
|
||
|
"chrome_arc_video_decode_accelerator.cc",
|
||
|
"chrome_arc_video_decode_accelerator.h",
|
||
|
"gpu_arc_video_decode_accelerator.cc",
|
||
|
"gpu_arc_video_decode_accelerator.h",
|
||
|
"gpu_arc_video_encode_accelerator.cc",
|
||
|
"gpu_arc_video_encode_accelerator.h",
|
||
|
]
|
||
|
}
|
||
|
}
|