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

Side by Side Diff: build/common.gypi

Issue 343593003: Enable WebAudio on ARM64 and MIPS (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 6 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 | content/child/runtime_features.cc » ('j') | 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 869 matching lines...) Expand 10 before | Expand all | Expand 10 after
880 # TODO(maruel): Remove the conditions as more configurations are 880 # TODO(maruel): Remove the conditions as more configurations are
881 # supported. 881 # supported.
882 # NOTE: The check for disable_nacl==0 and component=="static_library" 882 # NOTE: The check for disable_nacl==0 and component=="static_library"
883 # can't be used here because these variables are not defined yet, but it 883 # can't be used here because these variables are not defined yet, but it
884 # is still not supported. 884 # is still not supported.
885 ['OS!="ios" and OS!="android" and chromeos==0', { 885 ['OS!="ios" and OS!="android" and chromeos==0', {
886 'test_isolation_mode%': 'check', 886 'test_isolation_mode%': 'check',
887 }, { 887 }, {
888 'test_isolation_mode%': 'noop', 888 'test_isolation_mode%': 'noop',
889 }], 889 }],
890 # Whether Android ARM or x86 build uses OpenMAX DL FFT. 890 # Whether Android build uses OpenMAX DL FFT.
891 ['OS=="android" and ((target_arch=="arm" and arm_version >= 7) or target _arch=="ia32" or target_arch=="x64")', { 891 ['OS=="android" and ((target_arch=="arm" and arm_version >= 7) or target _arch=="ia32" or target_arch=="x64" or target_arch=="arm64" or target_arch=="mip sel")', {
892 # Currently only supported on Android ARMv7+, ia32 or x64. 892 # Currently only supported on Android ARMv7+, ARM64, ia32, x64 and mip sel.
893 # When enabled, this will also enable WebAudio support on 893 # When enabled, this will also enable WebAudio support on
894 # Android ARM, ia32 and x64. Default is enabled. Whether 894 # Android for these architectures. Default is enabled. Whether
895 # WebAudio is actually available depends on runtime settings 895 # WebAudio is actually available depends on runtime settings
896 # and flags. 896 # and flags.
897 'use_openmax_dl_fft%': 1, 897 'use_openmax_dl_fft%': 1,
898 }, { 898 }, {
899 'use_openmax_dl_fft%': 0, 899 'use_openmax_dl_fft%': 0,
900 }], 900 }],
901 ['OS=="win" or OS=="linux"', { 901 ['OS=="win" or OS=="linux"', {
902 'enable_mdns%' : 1, 902 'enable_mdns%' : 1,
903 }], 903 }],
904 904
(...skipping 4560 matching lines...) Expand 10 before | Expand all | Expand 10 after
5465 # settings in target dicts. SYMROOT is a special case, because many other 5465 # settings in target dicts. SYMROOT is a special case, because many other
5466 # Xcode variables depend on it, including variables such as 5466 # Xcode variables depend on it, including variables such as
5467 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 5467 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
5468 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 5468 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
5469 # files to appear (when present) in the UI as actual files and not red 5469 # files to appear (when present) in the UI as actual files and not red
5470 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 5470 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
5471 # and therefore SYMROOT, needs to be set at the project level. 5471 # and therefore SYMROOT, needs to be set at the project level.
5472 'SYMROOT': '<(DEPTH)/xcodebuild', 5472 'SYMROOT': '<(DEPTH)/xcodebuild',
5473 }, 5473 },
5474 } 5474 }
OLDNEW
« no previous file with comments | « no previous file | content/child/runtime_features.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698