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

Side by Side Diff: build/common.gypi

Issue 262803004: [Android WebView] Enable WebAudio API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 7 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 | « 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 835 matching lines...) Expand 10 before | Expand all | Expand 10 after
846 # supported. 846 # supported.
847 # NOTE: The check for disable_nacl==0 and component=="static_library" 847 # NOTE: The check for disable_nacl==0 and component=="static_library"
848 # can't be used here because these variables are not defined yet, but it 848 # can't be used here because these variables are not defined yet, but it
849 # is still not supported. 849 # is still not supported.
850 ['OS!="ios" and OS!="android" and chromeos==0', { 850 ['OS!="ios" and OS!="android" and chromeos==0', {
851 'test_isolation_mode%': 'check', 851 'test_isolation_mode%': 'check',
852 }, { 852 }, {
853 'test_isolation_mode%': 'noop', 853 'test_isolation_mode%': 'noop',
854 }], 854 }],
855 # Whether Android ARM or x86 build uses OpenMAX DL FFT. 855 # Whether Android ARM or x86 build uses OpenMAX DL FFT.
856 ['OS=="android" and ((target_arch=="arm" and arm_version >= 7) or target _arch=="ia32" or target_arch=="x64") and android_webview_build==0', { 856 ['OS=="android" and ((target_arch=="arm" and arm_version >= 7) or target _arch=="ia32" or target_arch=="x64")', {
857 # Currently only supported on Android ARMv7+, ia32 or x64 857 # Currently only supported on Android ARMv7+, ia32 or x64
858 # without webview. When enabled, this will also enable 858 # without webview. When enabled, this will also enable
Raymond Toy 2014/05/01 17:37:08 Nit: Fix the comment about "without webview".
benm (inactive) 2014/05/01 17:40:18 good catch!
859 # WebAudio support on Android ARM, ia32 and x64. Default is 859 # WebAudio support on Android ARM, ia32 and x64. Default is
860 # enabled. Whether WebAudio is actually available depends 860 # enabled. Whether WebAudio is actually available depends
861 # on runtime settings and flags. 861 # on runtime settings and flags.
862 'use_openmax_dl_fft%': 1, 862 'use_openmax_dl_fft%': 1,
863 }, { 863 }, {
864 'use_openmax_dl_fft%': 0, 864 'use_openmax_dl_fft%': 0,
865 }], 865 }],
866 ['OS=="win" or OS=="linux"', { 866 ['OS=="win" or OS=="linux"', {
867 'enable_mdns%' : 1, 867 'enable_mdns%' : 1,
868 }], 868 }],
(...skipping 4390 matching lines...) Expand 10 before | Expand all | Expand 10 after
5259 # settings in target dicts. SYMROOT is a special case, because many other 5259 # settings in target dicts. SYMROOT is a special case, because many other
5260 # Xcode variables depend on it, including variables such as 5260 # Xcode variables depend on it, including variables such as
5261 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 5261 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
5262 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 5262 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
5263 # files to appear (when present) in the UI as actual files and not red 5263 # files to appear (when present) in the UI as actual files and not red
5264 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 5264 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
5265 # and therefore SYMROOT, needs to be set at the project level. 5265 # and therefore SYMROOT, needs to be set at the project level.
5266 'SYMROOT': '<(DEPTH)/xcodebuild', 5266 'SYMROOT': '<(DEPTH)/xcodebuild',
5267 }, 5267 },
5268 } 5268 }
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