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 623 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
634 # TODO(csharp): Remove OS!="mac" once xcode can run the isolate code | 634 # TODO(csharp): Remove OS!="mac" once xcode can run the isolate code |
635 # again. | 635 # again. |
636 # NOTE: The check for disable_nacl==0 and component=="static_library" | 636 # NOTE: The check for disable_nacl==0 and component=="static_library" |
637 # can't be used here because these variables are not defined yet, but it | 637 # can't be used here because these variables are not defined yet, but it |
638 # is still not supported. | 638 # is still not supported. |
639 ['inside_chromium_build==1 and OS!="mac" and OS!="ios" and OS!="android"
and chromeos==0', { | 639 ['inside_chromium_build==1 and OS!="mac" and OS!="ios" and OS!="android"
and chromeos==0', { |
640 'test_isolation_mode%': 'check', | 640 'test_isolation_mode%': 'check', |
641 }, { | 641 }, { |
642 'test_isolation_mode%': 'noop', | 642 'test_isolation_mode%': 'noop', |
643 }], | 643 }], |
| 644 # Whether Android ARM build uses OpenMAX DL FFT. Default is |
| 645 # yes. This will also enable WebAudio on Android ARM. |
| 646 ['OS=="android" and target_arch=="arm"', { |
| 647 'use_openmax_dl_fft%': 1, |
| 648 }, { |
| 649 'use_openmax_dl_fft%': 0, |
| 650 }], |
644 ], | 651 ], |
645 | 652 |
646 # Set this to 1 to use the Google-internal file containing | 653 # Set this to 1 to use the Google-internal file containing |
647 # official API keys for Google Chrome even in a developer build. | 654 # official API keys for Google Chrome even in a developer build. |
648 # Setting this variable explicitly to 1 will cause your build to | 655 # Setting this variable explicitly to 1 will cause your build to |
649 # fail if the internal file is missing. | 656 # fail if the internal file is missing. |
650 # | 657 # |
651 # Set this to 0 to not use the internal file, even when it | 658 # Set this to 0 to not use the internal file, even when it |
652 # exists in your checkout. | 659 # exists in your checkout. |
653 # | 660 # |
(...skipping 15 matching lines...) Expand all Loading... |
669 # require server-side APIs may fail to work if no keys are | 676 # require server-side APIs may fail to work if no keys are |
670 # provided. | 677 # provided. |
671 # | 678 # |
672 # Note that if you are building an official build or if | 679 # Note that if you are building an official build or if |
673 # use_official_google_api_keys has been set to 1 (explicitly or | 680 # use_official_google_api_keys has been set to 1 (explicitly or |
674 # implicitly), these values will be ignored and the official | 681 # implicitly), these values will be ignored and the official |
675 # keys will be used instead. | 682 # keys will be used instead. |
676 'google_api_key%': '', | 683 'google_api_key%': '', |
677 'google_default_client_id%': '', | 684 'google_default_client_id%': '', |
678 'google_default_client_secret%': '', | 685 'google_default_client_secret%': '', |
679 | |
680 # Whether Android uses OpenMAX DL FFT. Default is no. | |
681 'use_openmax_dl_fft%': 0, | |
682 }, | 686 }, |
683 | 687 |
684 # Copy conditionally-set variables out one scope. | 688 # Copy conditionally-set variables out one scope. |
685 'branding%': '<(branding)', | 689 'branding%': '<(branding)', |
686 'buildtype%': '<(buildtype)', | 690 'buildtype%': '<(buildtype)', |
687 'target_arch%': '<(target_arch)', | 691 'target_arch%': '<(target_arch)', |
688 'host_arch%': '<(host_arch)', | 692 'host_arch%': '<(host_arch)', |
689 'toolkit_views%': '<(toolkit_views)', | 693 'toolkit_views%': '<(toolkit_views)', |
690 'ui_compositor_image_transport%': '<(ui_compositor_image_transport)', | 694 'ui_compositor_image_transport%': '<(ui_compositor_image_transport)', |
691 'use_aura%': '<(use_aura)', | 695 'use_aura%': '<(use_aura)', |
(...skipping 3548 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4240 # settings in target dicts. SYMROOT is a special case, because many other | 4244 # settings in target dicts. SYMROOT is a special case, because many other |
4241 # Xcode variables depend on it, including variables such as | 4245 # Xcode variables depend on it, including variables such as |
4242 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 4246 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
4243 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 4247 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
4244 # files to appear (when present) in the UI as actual files and not red | 4248 # files to appear (when present) in the UI as actual files and not red |
4245 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 4249 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
4246 # and therefore SYMROOT, needs to be set at the project level. | 4250 # and therefore SYMROOT, needs to be set at the project level. |
4247 'SYMROOT': '<(DEPTH)/xcodebuild', | 4251 'SYMROOT': '<(DEPTH)/xcodebuild', |
4248 }, | 4252 }, |
4249 } | 4253 } |
OLD | NEW |