mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-28 16:26:10 +03:00
27 lines
626 B
Plaintext
27 lines
626 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.
|
|
|
|
source_set("client") {
|
|
sources = [
|
|
"gpu_video_decode_accelerator_host.cc",
|
|
"gpu_video_decode_accelerator_host.h",
|
|
]
|
|
|
|
configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
|
|
|
|
deps = [
|
|
"//base",
|
|
"//gpu/ipc/common",
|
|
"//ipc",
|
|
"//media",
|
|
"//media:media_buildflags",
|
|
"//media/gpu",
|
|
"//media/gpu/ipc/common",
|
|
"//ui/gfx:memory_buffer",
|
|
"//ui/gfx/geometry",
|
|
"//ui/gfx/ipc",
|
|
"//ui/gfx/ipc/color",
|
|
]
|
|
}
|