blob: 62274879209875bb3708430ff290086ef0b56745 [file] [log] [blame]
# Copyright 2019 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
# NOTE: Only add *_dirs declarations if the libraries have been installed at
# non-standard locations. See ../docs/external_libraries.md for more details.
declare_args() {
# Common path for external libraries, e.g., Homebrew's /opt/homebrew/lib.
external_lib_dirs = []
have_ffmpeg = false
ffmpeg_libs = [
"avcodec",
"avformat",
"avutil",
"swresample",
]
ffmpeg_include_dirs = []
ffmpeg_lib_dirs = []
have_libopus = false
libopus_libs = [ "opus" ]
libopus_include_dirs = []
libopus_lib_dirs = []
have_libsdl2 = false
libsdl2_libs = [ "SDL2" ]
libsdl2_include_dirs = []
libsdl2_lib_dirs = []
have_libvpx = false
libvpx_libs = [ "vpx" ]
libvpx_include_dirs = []
libvpx_lib_dirs = []
have_libaom = false
libaom_libs = [ "aom" ]
libaom_include_dirs = []
libaom_lib_dirs = []
}