| 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 # There's a couple key GYP variables that control how FFmpeg is built: | 5 # There's a couple key GYP variables that control how FFmpeg is built: |
| 6 # ffmpeg_branding | 6 # ffmpeg_branding |
| 7 # Controls whether we build the Chromium or Google Chrome version of | 7 # Controls whether we build the Chromium or Google Chrome version of |
| 8 # FFmpeg. The Google Chrome version contains additional codecs. | 8 # FFmpeg. The Google Chrome version contains additional codecs. |
| 9 # Typical values are Chromium, Chrome, ChromiumOS, and ChromeOS. | 9 # Typical values are Chromium, Chrome, ChromiumOS, and ChromeOS. |
| 10 # use_system_ffmpeg | 10 # use_system_ffmpeg |
| (...skipping 334 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 345 'sources!': [ | 345 'sources!': [ |
| 346 'patched-ffmpeg-mt/libavcodec/libvpxdec.c', | 346 'patched-ffmpeg-mt/libavcodec/libvpxdec.c', |
| 347 ], | 347 ], |
| 348 'conditions': [ | 348 'conditions': [ |
| 349 ['arm_neon==1', { | 349 ['arm_neon==1', { |
| 350 'sources': [ | 350 'sources': [ |
| 351 'patched-ffmpeg-mt/libavcodec/arm/dsputil_init_neon.c', | 351 'patched-ffmpeg-mt/libavcodec/arm/dsputil_init_neon.c', |
| 352 'patched-ffmpeg-mt/libavcodec/arm/dsputil_neon.S', | 352 'patched-ffmpeg-mt/libavcodec/arm/dsputil_neon.S', |
| 353 'patched-ffmpeg-mt/libavcodec/arm/fft_neon.S', | 353 'patched-ffmpeg-mt/libavcodec/arm/fft_neon.S', |
| 354 'patched-ffmpeg-mt/libavcodec/arm/int_neon.S', | 354 'patched-ffmpeg-mt/libavcodec/arm/int_neon.S', |
| 355 'patched-ffmpeg-mt/libavcodec/arm/mdct_neon.S', |
| 356 'patched-ffmpeg-mt/libavcodec/arm/mpegvideo_neon.S', # oct 1
0 |
| 355 'patched-ffmpeg-mt/libavcodec/arm/rdft_neon.S', | 357 'patched-ffmpeg-mt/libavcodec/arm/rdft_neon.S', |
| 356 'patched-ffmpeg-mt/libavcodec/arm/simple_idct_neon.S', | 358 'patched-ffmpeg-mt/libavcodec/arm/simple_idct_neon.S', |
| 357 'patched-ffmpeg-mt/libavcodec/arm/vp3dsp_neon.S', | 359 'patched-ffmpeg-mt/libavcodec/arm/vp3dsp_neon.S', |
| 358 'patched-ffmpeg-mt/libavcodec/arm/mdct_neon.S', | |
| 359 ], | 360 ], |
| 360 }], | 361 }], |
| 361 ], | 362 ], |
| 362 }], # target_arch=="arm" | 363 }], # target_arch=="arm" |
| 363 ['target_arch=="arm" and (ffmpeg_branding=="Chrome" or ffmpeg_brandi
ng=="ChromeOS")', { | 364 ['target_arch=="arm" and (ffmpeg_branding=="Chrome" or ffmpeg_brandi
ng=="ChromeOS")', { |
| 364 'sources': [ | 365 'sources': [ |
| 365 'patched-ffmpeg-mt/libavcodec/arm/h264dsp_init_arm.c', | 366 'patched-ffmpeg-mt/libavcodec/arm/h264dsp_init_arm.c', |
| 366 'patched-ffmpeg-mt/libavcodec/arm/h264pred_init_arm.c', | 367 'patched-ffmpeg-mt/libavcodec/arm/h264pred_init_arm.c', |
| 367 'patched-ffmpeg-mt/libavcodec/arm/mpegvideo_arm.c', | 368 'patched-ffmpeg-mt/libavcodec/arm/mpegvideo_arm.c', |
| 368 'patched-ffmpeg-mt/libavcodec/arm/mpegvideo_armv5te.c', | 369 'patched-ffmpeg-mt/libavcodec/arm/mpegvideo_armv5te.c', |
| (...skipping 537 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 906 ], # conditions | 907 ], # conditions |
| 907 }, | 908 }, |
| 908 ], # targets | 909 ], # targets |
| 909 } | 910 } |
| 910 | 911 |
| 911 # Local Variables: | 912 # Local Variables: |
| 912 # tab-width:2 | 913 # tab-width:2 |
| 913 # indent-tabs-mode:nil | 914 # indent-tabs-mode:nil |
| 914 # End: | 915 # End: |
| 915 # vim: set expandtab tabstop=2 shiftwidth=2: | 916 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |