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

Side by Side Diff: source/libvpx/configure

Issue 592203002: libvpx: Pull from upstream (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/libvpx/
Patch Set: Created 6 years, 3 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 | Annotate | Revision Log
« no previous file with comments | « source/libvpx/build/make/rtcd.pl ('k') | source/libvpx/examples.mk » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/bin/sh 1 #!/bin/sh
2 ## 2 ##
3 ## configure 3 ## configure
4 ## 4 ##
5 ## This script is the front-end to the build system. It provides a similar 5 ## This script is the front-end to the build system. It provides a similar
6 ## interface to standard configure scripts with some extra bits for dealing 6 ## interface to standard configure scripts with some extra bits for dealing
7 ## with toolchains that differ from the standard POSIX interface and 7 ## with toolchains that differ from the standard POSIX interface and
8 ## for extracting subsets of the source tree. In theory, reusable parts 8 ## for extracting subsets of the source tree. In theory, reusable parts
9 ## of this script were intended to live in build/make/configure.sh, 9 ## of this script were intended to live in build/make/configure.sh,
10 ## but in practice, the line is pretty blurry. 10 ## but in practice, the line is pretty blurry.
(...skipping 263 matching lines...) Expand 10 before | Expand all | Expand 10 after
274 stdint_h 274 stdint_h
275 alt_tree_layout 275 alt_tree_layout
276 pthread_h 276 pthread_h
277 sys_mman_h 277 sys_mman_h
278 unistd_h 278 unistd_h
279 " 279 "
280 EXPERIMENT_LIST=" 280 EXPERIMENT_LIST="
281 spatial_svc 281 spatial_svc
282 vp9_temporal_denoising 282 vp9_temporal_denoising
283 fp_mb_stats 283 fp_mb_stats
284 emulate_hardware_highbitdepth
284 " 285 "
285 CONFIG_LIST=" 286 CONFIG_LIST="
286 external_build 287 external_build
287 install_docs 288 install_docs
288 install_bins 289 install_bins
289 install_libs 290 install_libs
290 install_srcs 291 install_srcs
291 use_x86inc 292 use_x86inc
292 debug 293 debug
293 gprof 294 gprof
(...skipping 487 matching lines...) Expand 10 before | Expand all | Expand 10 after
781 ## 782 ##
782 ## END APPLICATION SPECIFIC CONFIGURATION 783 ## END APPLICATION SPECIFIC CONFIGURATION
783 ## 784 ##
784 CONFIGURE_ARGS="$@" 785 CONFIGURE_ARGS="$@"
785 process "$@" 786 process "$@"
786 print_webm_license ${BUILD_PFX}vpx_config.c "/*" " */" 787 print_webm_license ${BUILD_PFX}vpx_config.c "/*" " */"
787 cat <<EOF >> ${BUILD_PFX}vpx_config.c 788 cat <<EOF >> ${BUILD_PFX}vpx_config.c
788 static const char* const cfg = "$CONFIGURE_ARGS"; 789 static const char* const cfg = "$CONFIGURE_ARGS";
789 const char *vpx_codec_build_config(void) {return cfg;} 790 const char *vpx_codec_build_config(void) {return cfg;}
790 EOF 791 EOF
OLDNEW
« no previous file with comments | « source/libvpx/build/make/rtcd.pl ('k') | source/libvpx/examples.mk » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698