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

Side by Side Diff: source/libvpx/configure

Issue 375983002: libvpx: Pull from upstream (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/libvpx/
Patch Set: Created 6 years, 5 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/iosbuild.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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 # all_platforms is a list of all supported target platforms. Maintain 89 # all_platforms is a list of all supported target platforms. Maintain
90 # alphabetically by architecture, generic-gnu last. 90 # alphabetically by architecture, generic-gnu last.
91 all_platforms="${all_platforms} armv5te-android-gcc" 91 all_platforms="${all_platforms} armv5te-android-gcc"
92 all_platforms="${all_platforms} armv5te-linux-rvct" 92 all_platforms="${all_platforms} armv5te-linux-rvct"
93 all_platforms="${all_platforms} armv5te-linux-gcc" 93 all_platforms="${all_platforms} armv5te-linux-gcc"
94 all_platforms="${all_platforms} armv5te-none-rvct" 94 all_platforms="${all_platforms} armv5te-none-rvct"
95 all_platforms="${all_platforms} armv6-darwin-gcc" 95 all_platforms="${all_platforms} armv6-darwin-gcc"
96 all_platforms="${all_platforms} armv6-linux-rvct" 96 all_platforms="${all_platforms} armv6-linux-rvct"
97 all_platforms="${all_platforms} armv6-linux-gcc" 97 all_platforms="${all_platforms} armv6-linux-gcc"
98 all_platforms="${all_platforms} armv6-none-rvct" 98 all_platforms="${all_platforms} armv6-none-rvct"
99 all_platforms="${all_platforms} arm64-darwin-gcc"
99 all_platforms="${all_platforms} armv7-android-gcc" #neon Cortex-A8 100 all_platforms="${all_platforms} armv7-android-gcc" #neon Cortex-A8
100 all_platforms="${all_platforms} armv7-darwin-gcc" #neon Cortex-A8 101 all_platforms="${all_platforms} armv7-darwin-gcc" #neon Cortex-A8
101 all_platforms="${all_platforms} armv7-linux-rvct" #neon Cortex-A8 102 all_platforms="${all_platforms} armv7-linux-rvct" #neon Cortex-A8
102 all_platforms="${all_platforms} armv7-linux-gcc" #neon Cortex-A8 103 all_platforms="${all_platforms} armv7-linux-gcc" #neon Cortex-A8
103 all_platforms="${all_platforms} armv7-none-rvct" #neon Cortex-A8 104 all_platforms="${all_platforms} armv7-none-rvct" #neon Cortex-A8
104 all_platforms="${all_platforms} armv7-win32-vs11" 105 all_platforms="${all_platforms} armv7-win32-vs11"
105 all_platforms="${all_platforms} armv7-win32-vs12" 106 all_platforms="${all_platforms} armv7-win32-vs12"
106 all_platforms="${all_platforms} armv7s-darwin-gcc" 107 all_platforms="${all_platforms} armv7s-darwin-gcc"
107 all_platforms="${all_platforms} mips32-linux-gcc" 108 all_platforms="${all_platforms} mips32-linux-gcc"
108 all_platforms="${all_platforms} ppc32-darwin8-gcc" 109 all_platforms="${all_platforms} ppc32-darwin8-gcc"
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
266 alt_tree_layout 267 alt_tree_layout
267 pthread_h 268 pthread_h
268 sys_mman_h 269 sys_mman_h
269 unistd_h 270 unistd_h
270 " 271 "
271 EXPERIMENT_LIST=" 272 EXPERIMENT_LIST="
272 alpha 273 alpha
273 multiple_arf 274 multiple_arf
274 spatial_svc 275 spatial_svc
275 denoising 276 denoising
277 fp_mb_stats
276 " 278 "
277 CONFIG_LIST=" 279 CONFIG_LIST="
278 external_build 280 external_build
279 install_docs 281 install_docs
280 install_bins 282 install_bins
281 install_libs 283 install_libs
282 install_srcs 284 install_srcs
283 use_x86inc 285 use_x86inc
284 debug 286 debug
285 gprof 287 gprof
(...skipping 479 matching lines...) Expand 10 before | Expand all | Expand 10 after
765 ## 767 ##
766 ## END APPLICATION SPECIFIC CONFIGURATION 768 ## END APPLICATION SPECIFIC CONFIGURATION
767 ## 769 ##
768 CONFIGURE_ARGS="$@" 770 CONFIGURE_ARGS="$@"
769 process "$@" 771 process "$@"
770 print_webm_license ${BUILD_PFX}vpx_config.c "/*" " */" 772 print_webm_license ${BUILD_PFX}vpx_config.c "/*" " */"
771 cat <<EOF >> ${BUILD_PFX}vpx_config.c 773 cat <<EOF >> ${BUILD_PFX}vpx_config.c
772 static const char* const cfg = "$CONFIGURE_ARGS"; 774 static const char* const cfg = "$CONFIGURE_ARGS";
773 const char *vpx_codec_build_config(void) {return cfg;} 775 const char *vpx_codec_build_config(void) {return cfg;}
774 EOF 776 EOF
OLDNEW
« no previous file with comments | « source/libvpx/build/make/iosbuild.sh ('k') | source/libvpx/examples.mk » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698