| OLD | NEW |
| 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 769 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 780 # again. | 780 # again. |
| 781 # NOTE: The check for disable_nacl==0 and component=="static_library" | 781 # NOTE: The check for disable_nacl==0 and component=="static_library" |
| 782 # can't be used here because these variables are not defined yet, but it | 782 # can't be used here because these variables are not defined yet, but it |
| 783 # is still not supported. | 783 # is still not supported. |
| 784 ['OS!="mac" and OS!="ios" and OS!="android" and chromeos==0', { | 784 ['OS!="mac" and OS!="ios" and OS!="android" and chromeos==0', { |
| 785 'test_isolation_mode%': 'check', | 785 'test_isolation_mode%': 'check', |
| 786 }, { | 786 }, { |
| 787 'test_isolation_mode%': 'noop', | 787 'test_isolation_mode%': 'noop', |
| 788 }], | 788 }], |
| 789 # Whether Android ARM build uses OpenMAX DL FFT. | 789 # Whether Android ARM build uses OpenMAX DL FFT. |
| 790 ['OS=="android" and target_arch=="arm" and android_webview_build==0', { | 790 ['OS=="android" and target_arch=="arm" and arm_version >= 7 and android_
webview_build==0', { |
| 791 # Currently only supported on Android ARM, without webview. | 791 # Currently only supported on Android ARMv7+, without webview. |
| 792 # When enabled, this will also enable WebAudio on Android | 792 # When enabled, this will also enable WebAudio on Android |
| 793 # ARM. Default is enabled. | 793 # ARM. Default is enabled. |
| 794 'use_openmax_dl_fft%': 1, | 794 'use_openmax_dl_fft%': 1, |
| 795 }, { | 795 }, { |
| 796 'use_openmax_dl_fft%': 0, | 796 'use_openmax_dl_fft%': 0, |
| 797 }], | 797 }], |
| 798 ['OS=="win" or OS=="linux"', { | 798 ['OS=="win" or OS=="linux"', { |
| 799 'enable_mdns%' : 1, | 799 'enable_mdns%' : 1, |
| 800 }], | 800 }], |
| 801 | 801 |
| (...skipping 3991 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4793 # settings in target dicts. SYMROOT is a special case, because many other | 4793 # settings in target dicts. SYMROOT is a special case, because many other |
| 4794 # Xcode variables depend on it, including variables such as | 4794 # Xcode variables depend on it, including variables such as |
| 4795 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 4795 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 4796 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 4796 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 4797 # files to appear (when present) in the UI as actual files and not red | 4797 # files to appear (when present) in the UI as actual files and not red |
| 4798 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 4798 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 4799 # and therefore SYMROOT, needs to be set at the project level. | 4799 # and therefore SYMROOT, needs to be set at the project level. |
| 4800 'SYMROOT': '<(DEPTH)/xcodebuild', | 4800 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 4801 }, | 4801 }, |
| 4802 } | 4802 } |
| OLD | NEW |