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

Side by Side Diff: build/common.gypi

Issue 12260023: Add support building with OpenMAX DL FFT for WebAudio (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 7 years, 9 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 650 matching lines...) Expand 10 before | Expand all | Expand 10 after
661 # require server-side APIs may fail to work if no keys are 661 # require server-side APIs may fail to work if no keys are
662 # provided. 662 # provided.
663 # 663 #
664 # Note that if you are building an official build or if 664 # Note that if you are building an official build or if
665 # use_official_google_api_keys has been set to 1 (explicitly or 665 # use_official_google_api_keys has been set to 1 (explicitly or
666 # implicitly), these values will be ignored and the official 666 # implicitly), these values will be ignored and the official
667 # keys will be used instead. 667 # keys will be used instead.
668 'google_api_key%': '', 668 'google_api_key%': '',
669 'google_default_client_id%': '', 669 'google_default_client_id%': '',
670 'google_default_client_secret%': '', 670 'google_default_client_secret%': '',
671
672 # Whether Android uses ARM FFT. Default is no.
673 'use_arm_fft%': 0,
671 }, 674 },
672 675
673 # Copy conditionally-set variables out one scope. 676 # Copy conditionally-set variables out one scope.
674 'branding%': '<(branding)', 677 'branding%': '<(branding)',
675 'buildtype%': '<(buildtype)', 678 'buildtype%': '<(buildtype)',
676 'target_arch%': '<(target_arch)', 679 'target_arch%': '<(target_arch)',
677 'host_arch%': '<(host_arch)', 680 'host_arch%': '<(host_arch)',
678 'toolkit_views%': '<(toolkit_views)', 681 'toolkit_views%': '<(toolkit_views)',
679 'ui_compositor_image_transport%': '<(ui_compositor_image_transport)', 682 'ui_compositor_image_transport%': '<(ui_compositor_image_transport)',
680 'use_aura%': '<(use_aura)', 683 'use_aura%': '<(use_aura)',
(...skipping 333 matching lines...) Expand 10 before | Expand all | Expand 10 after
1014 'sas_dll_exists': '<!(python <(DEPTH)/build/dir_exists.py <(sas_dll_path))', 1017 'sas_dll_exists': '<!(python <(DEPTH)/build/dir_exists.py <(sas_dll_path))',
1015 'wix_exists': '<!(python <(DEPTH)/build/dir_exists.py <(wix_path))', 1018 'wix_exists': '<!(python <(DEPTH)/build/dir_exists.py <(wix_path))',
1016 1019
1017 'windows_sdk_default_path': '<(DEPTH)/third_party/platformsdk_win8/files', 1020 'windows_sdk_default_path': '<(DEPTH)/third_party/platformsdk_win8/files',
1018 'directx_sdk_default_path': '<(DEPTH)/third_party/directxsdk/files', 1021 'directx_sdk_default_path': '<(DEPTH)/third_party/directxsdk/files',
1019 1022
1020 # Whether we are using the rlz library or not. Platforms like Android send 1023 # Whether we are using the rlz library or not. Platforms like Android send
1021 # rlz codes for searches but do not use the library. 1024 # rlz codes for searches but do not use the library.
1022 'enable_rlz%': 0, 1025 'enable_rlz%': 0,
1023 1026
1027 'use_arm_fft%': '<use_arm_fft)',
Ryan Sleevi 2013/02/28 00:33:41 Why isn't this around line 931?
Raymond Toy (Google) 2013/03/05 19:30:11 Moved as requested.
1028
1024 'conditions': [ 1029 'conditions': [
1025 ['OS=="win" and "<!(python <(DEPTH)/build/dir_exists.py <(windows_sdk_defa ult_path))"=="True"', { 1030 ['OS=="win" and "<!(python <(DEPTH)/build/dir_exists.py <(windows_sdk_defa ult_path))"=="True"', {
1026 'windows_sdk_path%': '<(windows_sdk_default_path)', 1031 'windows_sdk_path%': '<(windows_sdk_default_path)',
1027 }, { 1032 }, {
1028 'windows_sdk_path%': 'C:/Program Files (x86)/Windows Kits/8.0', 1033 'windows_sdk_path%': 'C:/Program Files (x86)/Windows Kits/8.0',
1029 }], 1034 }],
1030 ['OS=="win" and "<!(python <(DEPTH)/build/dir_exists.py <(directx_sdk_defa ult_path))"=="True"', { 1035 ['OS=="win" and "<!(python <(DEPTH)/build/dir_exists.py <(directx_sdk_defa ult_path))"=="True"', {
1031 'directx_sdk_path%': '<(directx_sdk_default_path)', 1036 'directx_sdk_path%': '<(directx_sdk_default_path)',
1032 }, { 1037 }, {
1033 'directx_sdk_path%': '$(DXSDK_DIR)', 1038 'directx_sdk_path%': '$(DXSDK_DIR)',
(...skipping 3094 matching lines...) Expand 10 before | Expand all | Expand 10 after
4128 # settings in target dicts. SYMROOT is a special case, because many other 4133 # settings in target dicts. SYMROOT is a special case, because many other
4129 # Xcode variables depend on it, including variables such as 4134 # Xcode variables depend on it, including variables such as
4130 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 4135 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
4131 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 4136 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
4132 # files to appear (when present) in the UI as actual files and not red 4137 # files to appear (when present) in the UI as actual files and not red
4133 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 4138 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
4134 # and therefore SYMROOT, needs to be set at the project level. 4139 # and therefore SYMROOT, needs to be set at the project level.
4135 'SYMROOT': '<(DEPTH)/xcodebuild', 4140 'SYMROOT': '<(DEPTH)/xcodebuild',
4136 }, 4141 },
4137 } 4142 }
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