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

Side by Side Diff: build/common.gypi

Issue 14324003: Android WebView: disable use of OpenMAX DL lib. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 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 | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 # IMPORTANT: 5 # IMPORTANT:
6 # Please don't directly include this file if you are building via gyp_chromium, 6 # Please don't directly include this file if you are building via gyp_chromium,
7 # since gyp_chromium is automatically forcing its inclusion. 7 # since gyp_chromium is automatically forcing its inclusion.
8 { 8 {
9 # Variables expected to be overriden on the GYP command line (-D) or by 9 # Variables expected to be overriden on the GYP command line (-D) or by
10 # ~/.gyp/include.gypi. 10 # ~/.gyp/include.gypi.
(...skipping 625 matching lines...) Expand 10 before | Expand all | Expand 10 after
636 # NOTE: The check for disable_nacl==0 and component=="static_library" 636 # NOTE: The check for disable_nacl==0 and component=="static_library"
637 # can't be used here because these variables are not defined yet, but it 637 # can't be used here because these variables are not defined yet, but it
638 # is still not supported. 638 # is still not supported.
639 ['inside_chromium_build==1 and OS!="mac" and OS!="ios" and OS!="android" and chromeos==0', { 639 ['inside_chromium_build==1 and OS!="mac" and OS!="ios" and OS!="android" and chromeos==0', {
640 'test_isolation_mode%': 'check', 640 'test_isolation_mode%': 'check',
641 }, { 641 }, {
642 'test_isolation_mode%': 'noop', 642 'test_isolation_mode%': 'noop',
643 }], 643 }],
644 # Whether Android ARM build uses OpenMAX DL FFT. Default is 644 # Whether Android ARM build uses OpenMAX DL FFT. Default is
645 # yes. This will also enable WebAudio on Android ARM. 645 # yes. This will also enable WebAudio on Android ARM.
646 ['OS=="android" and target_arch=="arm"', { 646 ['OS=="android" and target_arch=="arm" and android_webview_build==0', {
647 'use_openmax_dl_fft%': 1, 647 'use_openmax_dl_fft%': 1,
648 }, { 648 }, {
649 'use_openmax_dl_fft%': 0, 649 'use_openmax_dl_fft%': 0,
650 }], 650 }],
651 ], 651 ],
652 652
653 # Set this to 1 to use the Google-internal file containing 653 # Set this to 1 to use the Google-internal file containing
654 # official API keys for Google Chrome even in a developer build. 654 # official API keys for Google Chrome even in a developer build.
655 # Setting this variable explicitly to 1 will cause your build to 655 # Setting this variable explicitly to 1 will cause your build to
656 # fail if the internal file is missing. 656 # fail if the internal file is missing.
(...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after
937 937
938 # Set ARM fpu compilation flags (only meaningful if armv7==1 and 938 # Set ARM fpu compilation flags (only meaningful if armv7==1 and
939 # arm_neon==0). 939 # arm_neon==0).
940 'arm_fpu%': 'vfpv3', 940 'arm_fpu%': 'vfpv3',
941 941
942 # Set ARM float abi compilation flag. 942 # Set ARM float abi compilation flag.
943 'arm_float_abi%': 'softfp', 943 'arm_float_abi%': 'softfp',
944 944
945 # Enable use of OpenMAX DL FFT routines. 945 # Enable use of OpenMAX DL FFT routines.
946 'use_openmax_dl_fft%': '<(use_openmax_dl_fft)', 946 'use_openmax_dl_fft%': '<(use_openmax_dl_fft)',
947 947
948 # Enable new NPDevice API. 948 # Enable new NPDevice API.
949 'enable_new_npdevice_api%': 0, 949 'enable_new_npdevice_api%': 0,
950 950
951 # Enable EGLImage support in OpenMAX 951 # Enable EGLImage support in OpenMAX
952 'enable_eglimage%': 1, 952 'enable_eglimage%': 1,
953 953
954 # Enable a variable used elsewhere throughout the GYP files to determine 954 # Enable a variable used elsewhere throughout the GYP files to determine
955 # whether to compile in the sources for the GPU plugin / process. 955 # whether to compile in the sources for the GPU plugin / process.
956 'enable_gpu%': 1, 956 'enable_gpu%': 1,
957 957
(...skipping 3286 matching lines...) Expand 10 before | Expand all | Expand 10 after
4244 # settings in target dicts. SYMROOT is a special case, because many other 4244 # settings in target dicts. SYMROOT is a special case, because many other
4245 # Xcode variables depend on it, including variables such as 4245 # Xcode variables depend on it, including variables such as
4246 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 4246 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
4247 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 4247 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
4248 # files to appear (when present) in the UI as actual files and not red 4248 # files to appear (when present) in the UI as actual files and not red
4249 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 4249 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
4250 # and therefore SYMROOT, needs to be set at the project level. 4250 # and therefore SYMROOT, needs to be set at the project level.
4251 'SYMROOT': '<(DEPTH)/xcodebuild', 4251 'SYMROOT': '<(DEPTH)/xcodebuild',
4252 }, 4252 },
4253 } 4253 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698