Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
michael@0 | 1 | # Copyright 2014 The LibYuv Project Authors. All rights reserved. |
michael@0 | 2 | # |
michael@0 | 3 | # Use of this source code is governed by a BSD-style license |
michael@0 | 4 | # that can be found in the LICENSE file in the root of the source |
michael@0 | 5 | # tree. An additional intellectual property rights grant can be found |
michael@0 | 6 | # in the file PATENTS. All contributing project authors may |
michael@0 | 7 | # be found in the AUTHORS file in the root of the source tree. |
michael@0 | 8 | |
michael@0 | 9 | { |
michael@0 | 10 | 'variables': { |
michael@0 | 11 | 'libyuv_sources': [ |
michael@0 | 12 | # includes. |
michael@0 | 13 | 'include/libyuv.h', |
michael@0 | 14 | 'include/libyuv/basic_types.h', |
michael@0 | 15 | 'include/libyuv/compare.h', |
michael@0 | 16 | 'include/libyuv/convert.h', |
michael@0 | 17 | 'include/libyuv/convert_argb.h', |
michael@0 | 18 | 'include/libyuv/convert_from.h', |
michael@0 | 19 | 'include/libyuv/convert_from_argb.h', |
michael@0 | 20 | 'include/libyuv/cpu_id.h', |
michael@0 | 21 | 'include/libyuv/format_conversion.h', |
michael@0 | 22 | 'include/libyuv/mjpeg_decoder.h', |
michael@0 | 23 | 'include/libyuv/planar_functions.h', |
michael@0 | 24 | 'include/libyuv/rotate.h', |
michael@0 | 25 | 'include/libyuv/rotate_argb.h', |
michael@0 | 26 | 'include/libyuv/row.h', |
michael@0 | 27 | 'include/libyuv/scale.h', |
michael@0 | 28 | 'include/libyuv/scale_argb.h', |
michael@0 | 29 | 'include/libyuv/scale_row.h', |
michael@0 | 30 | 'include/libyuv/version.h', |
michael@0 | 31 | 'include/libyuv/video_common.h', |
michael@0 | 32 | |
michael@0 | 33 | # sources. |
michael@0 | 34 | 'source/compare.cc', |
michael@0 | 35 | 'source/compare_common.cc', |
michael@0 | 36 | 'source/compare_posix.cc', |
michael@0 | 37 | 'source/compare_win.cc', |
michael@0 | 38 | 'source/convert.cc', |
michael@0 | 39 | 'source/convert_argb.cc', |
michael@0 | 40 | 'source/convert_from.cc', |
michael@0 | 41 | 'source/convert_from_argb.cc', |
michael@0 | 42 | 'source/convert_jpeg.cc', |
michael@0 | 43 | 'source/convert_to_argb.cc', |
michael@0 | 44 | 'source/convert_to_i420.cc', |
michael@0 | 45 | 'source/cpu_id.cc', |
michael@0 | 46 | 'source/format_conversion.cc', |
michael@0 | 47 | 'source/mjpeg_decoder.cc', |
michael@0 | 48 | 'source/mjpeg_validate.cc', |
michael@0 | 49 | 'source/planar_functions.cc', |
michael@0 | 50 | 'source/rotate.cc', |
michael@0 | 51 | 'source/rotate_argb.cc', |
michael@0 | 52 | 'source/rotate_mips.cc', |
michael@0 | 53 | 'source/row_any.cc', |
michael@0 | 54 | 'source/row_common.cc', |
michael@0 | 55 | 'source/row_mips.cc', |
michael@0 | 56 | 'source/row_posix.cc', |
michael@0 | 57 | 'source/row_win.cc', |
michael@0 | 58 | 'source/scale.cc', |
michael@0 | 59 | 'source/scale_argb.cc', |
michael@0 | 60 | 'source/scale_common.cc', |
michael@0 | 61 | 'source/scale_mips.cc', |
michael@0 | 62 | 'source/scale_posix.cc', |
michael@0 | 63 | 'source/scale_win.cc', |
michael@0 | 64 | 'source/video_common.cc', |
michael@0 | 65 | ], |
michael@0 | 66 | } |
michael@0 | 67 | } |