blob: 117aac0c4dc3caa9d628b466ddd5b4285da519c6 [file] [log] [blame]
# Copyright 2020 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
executable("encode_file") {
testonly = true
output_name = "encode_file"
sources = [
"encoder_client.cc",
"encoder_client.h",
"main.cc",
]
deps = [
"//sdk/fidl/fuchsia.mediacodec",
"//sdk/lib/sys/cpp",
"//src/lib/fxl",
"//src/media/lib/test:codec_buffer",
"//zircon/public/lib/async",
"//zircon/public/lib/async-cpp",
"//zircon/system/ulib/async-loop:async-loop-cpp",
"//zircon/system/ulib/async-loop:async-loop-default",
]
# TODO(fxbug.dev/58162): delete the below and fix compiler warnings
configs += [ "//build/config:Wno-conversion" ]
}