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