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

Side by Side Diff: source/libvpx/configure

Issue 1339513003: libvpx: Pull from upstream (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/libvpx.git@master
Patch Set: Created 5 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
« no previous file with comments | « source/libvpx/build/make/configure.sh ('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 246 matching lines...) Expand 10 before | Expand all | Expand 10 after
257 vpx_ports 257 vpx_ports
258 stdint_h 258 stdint_h
259 pthread_h 259 pthread_h
260 sys_mman_h 260 sys_mman_h
261 unistd_h 261 unistd_h
262 " 262 "
263 EXPERIMENT_LIST=" 263 EXPERIMENT_LIST="
264 spatial_svc 264 spatial_svc
265 fp_mb_stats 265 fp_mb_stats
266 emulate_hardware 266 emulate_hardware
267 misc_fixes
267 " 268 "
268 CONFIG_LIST=" 269 CONFIG_LIST="
269 dependency_tracking 270 dependency_tracking
270 external_build 271 external_build
271 install_docs 272 install_docs
272 install_bins 273 install_bins
273 install_libs 274 install_libs
274 install_srcs 275 install_srcs
275 use_x86inc 276 use_x86inc
276 debug 277 debug
(...skipping 452 matching lines...) Expand 10 before | Expand all | Expand 10 after
729 ## END APPLICATION SPECIFIC CONFIGURATION 730 ## END APPLICATION SPECIFIC CONFIGURATION
730 ## 731 ##
731 CONFIGURE_ARGS="$@" 732 CONFIGURE_ARGS="$@"
732 process "$@" 733 process "$@"
733 print_webm_license ${BUILD_PFX}vpx_config.c "/*" " */" 734 print_webm_license ${BUILD_PFX}vpx_config.c "/*" " */"
734 cat <<EOF >> ${BUILD_PFX}vpx_config.c 735 cat <<EOF >> ${BUILD_PFX}vpx_config.c
735 #include "vpx/vpx_codec.h" 736 #include "vpx/vpx_codec.h"
736 static const char* const cfg = "$CONFIGURE_ARGS"; 737 static const char* const cfg = "$CONFIGURE_ARGS";
737 const char *vpx_codec_build_config(void) {return cfg;} 738 const char *vpx_codec_build_config(void) {return cfg;}
738 EOF 739 EOF
OLDNEW
« no previous file with comments | « source/libvpx/build/make/configure.sh ('k') | source/libvpx/examples.mk » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698