Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(38)

Side by Side Diff: libyuv.gypi

Issue 1392043003: merge neon source files back into single libyuv library (Closed) Base URL: https://chromium.googlesource.com/libyuv/libyuv@master
Patch Set: bump version Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « libyuv.gyp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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': {
(...skipping 16 matching lines...) Expand all
27 'include/libyuv/scale.h', 27 'include/libyuv/scale.h',
28 'include/libyuv/scale_argb.h', 28 'include/libyuv/scale_argb.h',
29 'include/libyuv/scale_row.h', 29 'include/libyuv/scale_row.h',
30 'include/libyuv/version.h', 30 'include/libyuv/version.h',
31 'include/libyuv/video_common.h', 31 'include/libyuv/video_common.h',
32 32
33 # sources. 33 # sources.
34 'source/compare.cc', 34 'source/compare.cc',
35 'source/compare_common.cc', 35 'source/compare_common.cc',
36 'source/compare_gcc.cc', 36 'source/compare_gcc.cc',
37 'source/compare_neon.cc',
38 'source/compare_neon64.cc',
37 'source/compare_win.cc', 39 'source/compare_win.cc',
38 'source/convert.cc', 40 'source/convert.cc',
39 'source/convert_argb.cc', 41 'source/convert_argb.cc',
40 'source/convert_from.cc', 42 'source/convert_from.cc',
41 'source/convert_from_argb.cc', 43 'source/convert_from_argb.cc',
42 'source/convert_jpeg.cc', 44 'source/convert_jpeg.cc',
43 'source/convert_to_argb.cc', 45 'source/convert_to_argb.cc',
44 'source/convert_to_i420.cc', 46 'source/convert_to_i420.cc',
45 'source/cpu_id.cc', 47 'source/cpu_id.cc',
46 'source/mjpeg_decoder.cc', 48 'source/mjpeg_decoder.cc',
47 'source/mjpeg_validate.cc', 49 'source/mjpeg_validate.cc',
48 'source/planar_functions.cc', 50 'source/planar_functions.cc',
49 'source/rotate.cc', 51 'source/rotate.cc',
50 'source/rotate_any.cc', 52 'source/rotate_any.cc',
51 'source/rotate_argb.cc', 53 'source/rotate_argb.cc',
52 'source/rotate_common.cc', 54 'source/rotate_common.cc',
55 'source/rotate_gcc.cc',
53 'source/rotate_mips.cc', 56 'source/rotate_mips.cc',
54 'source/rotate_gcc.cc', 57 'source/rotate_neon.cc',
58 'source/rotate_neon64.cc',
55 'source/rotate_win.cc', 59 'source/rotate_win.cc',
56 'source/row_any.cc', 60 'source/row_any.cc',
57 'source/row_common.cc', 61 'source/row_common.cc',
62 'source/row_gcc.cc',
58 'source/row_mips.cc', 63 'source/row_mips.cc',
59 'source/row_gcc.cc', 64 'source/row_neon.cc',
65 'source/row_neon64.cc',
60 'source/row_win.cc', 66 'source/row_win.cc',
61 'source/scale.cc', 67 'source/scale.cc',
68 'source/scale_any.cc',
62 'source/scale_argb.cc', 69 'source/scale_argb.cc',
63 'source/scale_any.cc',
64 'source/scale_common.cc', 70 'source/scale_common.cc',
71 'source/scale_gcc.cc',
65 'source/scale_mips.cc', 72 'source/scale_mips.cc',
66 'source/scale_gcc.cc', 73 'source/scale_neon.cc',
74 'source/scale_neon64.cc',
67 'source/scale_win.cc', 75 'source/scale_win.cc',
68 'source/video_common.cc', 76 'source/video_common.cc',
69 ], 77 ],
70 } 78 }
71 } 79 }
OLDNEW
« no previous file with comments | « libyuv.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698