OLD | NEW |
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 # TODO(fbarchard): Add wmapro. | 5 # TODO(fbarchard): Add wmapro. |
6 # TODO(ajwong): Determine if we want to statically link libz. | 6 # TODO(ajwong): Determine if we want to statically link libz. |
7 | 7 |
8 { | 8 { |
9 'target_defaults': { | 9 'target_defaults': { |
10 'conditions': [ | 10 'conditions': [ |
(...skipping 297 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
308 'source/patched-ffmpeg-mt/libavcodec/arm/simple_idct_arm.S', | 308 'source/patched-ffmpeg-mt/libavcodec/arm/simple_idct_arm.S', |
309 'source/patched-ffmpeg-mt/libavcodec/arm/simple_idct_armv5te.S', | 309 'source/patched-ffmpeg-mt/libavcodec/arm/simple_idct_armv5te.S', |
310 'source/patched-ffmpeg-mt/libavcodec/arm/simple_idct_armv6.S', | 310 'source/patched-ffmpeg-mt/libavcodec/arm/simple_idct_armv6.S', |
311 ], | 311 ], |
312 'conditions': [ | 312 'conditions': [ |
313 ['arm_neon==1', { | 313 ['arm_neon==1', { |
314 'sources': [ | 314 'sources': [ |
315 'source/patched-ffmpeg-mt/libavcodec/arm/dsputil_init_neon.c
', | 315 'source/patched-ffmpeg-mt/libavcodec/arm/dsputil_init_neon.c
', |
316 'source/patched-ffmpeg-mt/libavcodec/arm/dsputil_neon.S', | 316 'source/patched-ffmpeg-mt/libavcodec/arm/dsputil_neon.S', |
317 'source/patched-ffmpeg-mt/libavcodec/arm/fft_neon.S', # TODO
(fbarchard): Review this file. | 317 'source/patched-ffmpeg-mt/libavcodec/arm/fft_neon.S', # TODO
(fbarchard): Review this file. |
| 318 'source/patched-ffmpeg-mt/libavcodec/arm/int_neon.S', # TODO
(fbarchard): Review this file. |
318 'source/patched-ffmpeg-mt/libavcodec/arm/simple_idct_neon.S'
, | 319 'source/patched-ffmpeg-mt/libavcodec/arm/simple_idct_neon.S'
, |
319 'source/patched-ffmpeg-mt/libavcodec/arm/vp3dsp_neon.S', # T
ODO(fbarchard): Review this file. | 320 'source/patched-ffmpeg-mt/libavcodec/arm/vp3dsp_neon.S', # T
ODO(fbarchard): Review this file. |
320 'source/patched-ffmpeg-mt/libavcodec/arm/mdct_neon.S', # TOD
O(fbarchard): Review this file. | 321 'source/patched-ffmpeg-mt/libavcodec/arm/mdct_neon.S', # TOD
O(fbarchard): Review this file. |
321 ], | 322 ], |
322 }], | 323 }], |
323 ], | 324 ], |
324 }], # target_arch=="arm" | 325 }], # target_arch=="arm" |
325 ['target_arch=="arm" and (ffmpeg_branding=="Chrome" or ffmpeg_brandi
ng=="ChromeOS")', { | 326 ['target_arch=="arm" and (ffmpeg_branding=="Chrome" or ffmpeg_brandi
ng=="ChromeOS")', { |
326 'sources': [ | 327 'sources': [ |
327 'source/patched-ffmpeg-mt/libavcodec/arm/h264pred_init_arm.c', | 328 'source/patched-ffmpeg-mt/libavcodec/arm/h264pred_init_arm.c', |
(...skipping 482 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
810 ], | 811 ], |
811 }, | 812 }, |
812 ], | 813 ], |
813 } | 814 } |
814 | 815 |
815 # Local Variables: | 816 # Local Variables: |
816 # tab-width:2 | 817 # tab-width:2 |
817 # indent-tabs-mode:nil | 818 # indent-tabs-mode:nil |
818 # End: | 819 # End: |
819 # vim: set expandtab tabstop=2 shiftwidth=2: | 820 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |