OLD | NEW |
1 # Copyright 2014 The LibYuv Project Authors. All rights reserved. | 1 # Copyright 2014 The LibYuv Project Authors. All rights reserved. |
2 # | 2 # |
3 # Use of this source code is governed by a BSD-style license | 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 | 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 | 5 # tree. An additional intellectual property rights grant can be found |
6 # in the file PATENTS. All contributing project authors may | 6 # in the file PATENTS. All contributing project authors may |
7 # be found in the AUTHORS file in the root of the source tree. | 7 # be found in the AUTHORS file in the root of the source tree. |
8 | 8 |
9 { | 9 { |
10 'variables': { | 10 'variables': { |
11 'libyuv_sources': [ | 11 'libyuv_sources': [ |
12 # includes. | 12 # includes. |
13 'include/libyuv.h', | 13 'include/libyuv.h', |
14 'include/libyuv/basic_types.h', | 14 'include/libyuv/basic_types.h', |
15 'include/libyuv/compare.h', | 15 'include/libyuv/compare.h', |
16 'include/libyuv/convert.h', | 16 'include/libyuv/convert.h', |
17 'include/libyuv/convert_argb.h', | 17 'include/libyuv/convert_argb.h', |
18 'include/libyuv/convert_from.h', | 18 'include/libyuv/convert_from.h', |
19 'include/libyuv/convert_from_argb.h', | 19 'include/libyuv/convert_from_argb.h', |
20 'include/libyuv/cpu_id.h', | 20 'include/libyuv/cpu_id.h', |
| 21 'include/libyuv/macros_msa.h', |
21 'include/libyuv/mjpeg_decoder.h', | 22 'include/libyuv/mjpeg_decoder.h', |
22 'include/libyuv/planar_functions.h', | 23 'include/libyuv/planar_functions.h', |
23 'include/libyuv/rotate.h', | 24 'include/libyuv/rotate.h', |
24 'include/libyuv/rotate_argb.h', | 25 'include/libyuv/rotate_argb.h', |
25 'include/libyuv/rotate_row.h', | 26 'include/libyuv/rotate_row.h', |
26 'include/libyuv/row.h', | 27 'include/libyuv/row.h', |
27 'include/libyuv/scale.h', | 28 'include/libyuv/scale.h', |
28 'include/libyuv/scale_argb.h', | 29 'include/libyuv/scale_argb.h', |
29 'include/libyuv/scale_row.h', | 30 'include/libyuv/scale_row.h', |
30 'include/libyuv/version.h', | 31 'include/libyuv/version.h', |
(...skipping 23 matching lines...) Expand all Loading... |
54 'source/rotate_common.cc', | 55 'source/rotate_common.cc', |
55 'source/rotate_gcc.cc', | 56 'source/rotate_gcc.cc', |
56 'source/rotate_mips.cc', | 57 'source/rotate_mips.cc', |
57 'source/rotate_neon.cc', | 58 'source/rotate_neon.cc', |
58 'source/rotate_neon64.cc', | 59 'source/rotate_neon64.cc', |
59 'source/rotate_win.cc', | 60 'source/rotate_win.cc', |
60 'source/row_any.cc', | 61 'source/row_any.cc', |
61 'source/row_common.cc', | 62 'source/row_common.cc', |
62 'source/row_gcc.cc', | 63 'source/row_gcc.cc', |
63 'source/row_mips.cc', | 64 'source/row_mips.cc', |
| 65 'source/row_msa.cc', |
64 'source/row_neon.cc', | 66 'source/row_neon.cc', |
65 'source/row_neon64.cc', | 67 'source/row_neon64.cc', |
66 'source/row_win.cc', | 68 'source/row_win.cc', |
67 'source/scale.cc', | 69 'source/scale.cc', |
68 'source/scale_any.cc', | 70 'source/scale_any.cc', |
69 'source/scale_argb.cc', | 71 'source/scale_argb.cc', |
70 'source/scale_common.cc', | 72 'source/scale_common.cc', |
71 'source/scale_gcc.cc', | 73 'source/scale_gcc.cc', |
72 'source/scale_mips.cc', | 74 'source/scale_mips.cc', |
73 'source/scale_neon.cc', | 75 'source/scale_neon.cc', |
74 'source/scale_neon64.cc', | 76 'source/scale_neon64.cc', |
75 'source/scale_win.cc', | 77 'source/scale_win.cc', |
76 'source/video_common.cc', | 78 'source/video_common.cc', |
77 ], | 79 ], |
78 } | 80 } |
79 } | 81 } |
OLD | NEW |