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 634 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
645 ['OS=="android" and target_arch=="arm" and android_webview_build==0', { | 645 ['OS=="android" and target_arch=="arm" and android_webview_build==0', { |
646 # Currently only supported on Android ARM, without webview. | 646 # Currently only supported on Android ARM, without webview. |
647 # When enabled, this will also enable WebAudio on Android | 647 # When enabled, this will also enable WebAudio on Android |
648 # ARM. Default is enabled. | 648 # ARM. Default is enabled. |
649 'use_openmax_dl_fft%': 1, | 649 'use_openmax_dl_fft%': 1, |
650 }, { | 650 }, { |
651 'use_openmax_dl_fft%': 0, | 651 'use_openmax_dl_fft%': 0, |
652 }], | 652 }], |
653 ], | 653 ], |
654 | 654 |
| 655 # Set this to 1 to enable use of concatenated impulse responses |
| 656 # for the HRTF panner in WebAudio. |
| 657 'use_concatenated_impulse_responses': 0, |
| 658 |
655 # Set this to 1 to use the Google-internal file containing | 659 # Set this to 1 to use the Google-internal file containing |
656 # official API keys for Google Chrome even in a developer build. | 660 # official API keys for Google Chrome even in a developer build. |
657 # Setting this variable explicitly to 1 will cause your build to | 661 # Setting this variable explicitly to 1 will cause your build to |
658 # fail if the internal file is missing. | 662 # fail if the internal file is missing. |
659 # | 663 # |
660 # Set this to 0 to not use the internal file, even when it | 664 # Set this to 0 to not use the internal file, even when it |
661 # exists in your checkout. | 665 # exists in your checkout. |
662 # | 666 # |
663 # Leave set to 2 to have this variable implicitly set to 1 if | 667 # Leave set to 2 to have this variable implicitly set to 1 if |
664 # you have src/google_apis/internal/google_chrome_api_keys.h in | 668 # you have src/google_apis/internal/google_chrome_api_keys.h in |
(...skipping 828 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1493 }], | 1497 }], |
1494 ['enable_app_list==1', { | 1498 ['enable_app_list==1', { |
1495 'grit_defines': ['-D', 'enable_app_list'], | 1499 'grit_defines': ['-D', 'enable_app_list'], |
1496 }], | 1500 }], |
1497 ['enable_settings_app==1', { | 1501 ['enable_settings_app==1', { |
1498 'grit_defines': ['-D', 'enable_settings_app'], | 1502 'grit_defines': ['-D', 'enable_settings_app'], |
1499 }], | 1503 }], |
1500 ['enable_google_now==1', { | 1504 ['enable_google_now==1', { |
1501 'grit_defines': ['-D', 'enable_google_now'], | 1505 'grit_defines': ['-D', 'enable_google_now'], |
1502 }], | 1506 }], |
| 1507 ['use_concatenated_impulse_responses==1', { |
| 1508 'grit_defines': ['-D', 'use_concatenated_impulse_responses'], |
| 1509 }], |
1503 ['clang_use_chrome_plugins==1 and OS!="win"', { | 1510 ['clang_use_chrome_plugins==1 and OS!="win"', { |
1504 'clang_chrome_plugins_flags': [ | 1511 'clang_chrome_plugins_flags': [ |
1505 '<!@(<(DEPTH)/tools/clang/scripts/plugin_flags.sh)' | 1512 '<!@(<(DEPTH)/tools/clang/scripts/plugin_flags.sh)' |
1506 ], | 1513 ], |
1507 }], | 1514 }], |
1508 | 1515 |
1509 ['asan==1 and OS!="win"', { | 1516 ['asan==1 and OS!="win"', { |
1510 'clang%': 1, | 1517 'clang%': 1, |
1511 }], | 1518 }], |
1512 ['asan==1 and OS=="mac"', { | 1519 ['asan==1 and OS=="mac"', { |
(...skipping 2765 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4278 # settings in target dicts. SYMROOT is a special case, because many other | 4285 # settings in target dicts. SYMROOT is a special case, because many other |
4279 # Xcode variables depend on it, including variables such as | 4286 # Xcode variables depend on it, including variables such as |
4280 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 4287 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
4281 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 4288 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
4282 # files to appear (when present) in the UI as actual files and not red | 4289 # files to appear (when present) in the UI as actual files and not red |
4283 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 4290 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
4284 # and therefore SYMROOT, needs to be set at the project level. | 4291 # and therefore SYMROOT, needs to be set at the project level. |
4285 'SYMROOT': '<(DEPTH)/xcodebuild', | 4292 'SYMROOT': '<(DEPTH)/xcodebuild', |
4286 }, | 4293 }, |
4287 } | 4294 } |
OLD | NEW |