moz.build (1861B)
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 Library("mp4_demuxer_gtest") 8 9 if CONFIG["OS_TARGET"] != "Android": 10 SOURCES += [ 11 "TestParser.cpp", 12 ] 13 14 SOURCES += [ 15 "TestInterval.cpp", 16 ] 17 18 TEST_HARNESS_FILES.gtest += [ 19 "test_case_1156505.mp4", 20 "test_case_1181213.mp4", 21 "test_case_1181215.mp4", 22 "test_case_1181223.mp4", 23 "test_case_1181719.mp4", 24 "test_case_1185230.mp4", 25 "test_case_1187067.mp4", 26 "test_case_1200326.mp4", 27 "test_case_1204580.mp4", 28 "test_case_1216748.mp4", 29 "test_case_1296473.mp4", 30 "test_case_1296532.mp4", 31 "test_case_1301065-harder.mp4", 32 "test_case_1301065-i64max.mp4", 33 "test_case_1301065-i64min.mp4", 34 "test_case_1301065-max-ez.mp4", 35 "test_case_1301065-max-ok.mp4", 36 "test_case_1301065-overfl.mp4", 37 "test_case_1301065-u32max.mp4", 38 "test_case_1301065-u64max.mp4", 39 "test_case_1301065.mp4", 40 "test_case_1329061.mov", 41 "test_case_1351094.mp4", 42 "test_case_1388991.mp4", 43 "test_case_1389299.mp4", 44 "test_case_1389527.mp4", 45 "test_case_1395244.mp4", 46 "test_case_1410565.mp4", 47 "test_case_1513651-2-sample-description-entries.mp4", 48 "test_case_1519617-cenc-init-with-track_id-0.mp4", 49 "test_case_1519617-track2-trafs-removed.mp4", 50 "test_case_1519617-video-has-track_id-0.mp4", 51 "test_case_1714125-2-sample-description-entires-with-identical-crypto.mp4", 52 ] 53 54 UNIFIED_SOURCES += [ 55 "TestMP4.cpp", 56 ] 57 58 TEST_HARNESS_FILES.gtest += [ 59 "../../test/street.mp4", 60 ] 61 LOCAL_INCLUDES += [ 62 "../../mp4", 63 "/toolkit/components/telemetry/tests/gtest", 64 ] 65 66 FINAL_LIBRARY = "xul-gtest"