moz.build (720B)
1 # -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*- 2 # vim: set filetype=python: 3 # This Source Code Form is subject to the terms of the Mozilla Public 4 # License, v. 2.0. If a copy of the MPL was not distributed with this 5 # file, You can obtain one at http://mozilla.org/MPL/2.0/. 6 7 with Files("**"): 8 BUG_COMPONENT = ("Core", "Audio/Video: Playback") 9 10 TEST_DIRS += [ 11 "gtest", 12 ] 13 14 EXPORTS += [ 15 "Adts.h", 16 "AnnexB.h", 17 "ByteStreamsUtils.h", 18 "H264.h", 19 "H265.h", 20 ] 21 22 UNIFIED_SOURCES += [ 23 "Adts.cpp", 24 "AnnexB.cpp", 25 "H264.cpp", 26 "H265.cpp", 27 ] 28 29 LOCAL_INCLUDES += [ 30 "../../../mp4/", 31 ] 32 33 FINAL_LIBRARY = "xul" 34 35 # Suppress warnings for now. 36 CXXFLAGS += [ 37 "-Wno-sign-compare", 38 ]