1# Copyright 2019 The Chromium Authors. All rights reserved. 2# Use of this source code is governed by a BSD-style license that can be 3# found in the LICENSE file. 4 5# NOTE: Only add *_dirs declarations if the libraries have been installed at 6# non-standard locations. See the related markdown for more information: 7# [external_libraries.md](external_libraries.md). 8declare_args() { 9 have_ffmpeg = false 10 ffmpeg_libs = [ 11 "avcodec", 12 "avformat", 13 "avutil", 14 "swresample", 15 ] 16 ffmpeg_include_dirs = [] 17 ffmpeg_lib_dirs = [] 18 19 have_libopus = false 20 libopus_libs = [ "opus" ] 21 libopus_include_dirs = [] 22 libopus_lib_dirs = [] 23 24 have_libsdl2 = false 25 libsdl2_libs = [ "SDL2" ] 26 libsdl2_include_dirs = [] 27 libsdl2_lib_dirs = [] 28 29 have_libvpx = false 30 libvpx_libs = [ "vpx" ] 31 libvpx_include_dirs = [] 32 libvpx_lib_dirs = [] 33 34 have_libaom = false 35 libaom_libs = [ "aom" ] 36 libaom_include_dirs = [] 37 libaom_lib_dirs = [] 38} 39