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 756 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
767 # Uses Android's crash report system | 767 # Uses Android's crash report system |
768 'linux_breakpad%': 0, | 768 'linux_breakpad%': 0, |
769 | 769 |
770 # Always uses openssl. | 770 # Always uses openssl. |
771 'use_openssl%': 1, | 771 'use_openssl%': 1, |
772 | 772 |
773 'proprietary_codecs%': '<(proprietary_codecs)', | 773 'proprietary_codecs%': '<(proprietary_codecs)', |
774 'safe_browsing%': 0, | 774 'safe_browsing%': 0, |
775 'configuration_policy%': 0, | 775 'configuration_policy%': 0, |
776 'input_speech%': 0, | 776 'input_speech%': 0, |
| 777 'enable_web_intents%': 0, |
777 'java_bridge%': 1, | 778 'java_bridge%': 1, |
778 | 779 |
779 # Set to 1 once we have a notification system for Android. | 780 # Set to 1 once we have a notification system for Android. |
780 # http://crbug.com/115320 | 781 # http://crbug.com/115320 |
781 'notifications%': 0, | 782 'notifications%': 0, |
782 | 783 |
783 # Builds the gtest targets as a shared_library. | 784 # Builds the gtest targets as a shared_library. |
784 # TODO(michaelbai): Use the fixed value 'shared_library' once it | 785 # TODO(michaelbai): Use the fixed value 'shared_library' once it |
785 # is fully supported. | 786 # is fully supported. |
786 'gtest_target_type%': '<(gtest_target_type)', | 787 'gtest_target_type%': '<(gtest_target_type)', |
(...skipping 2111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2898 # settings in target dicts. SYMROOT is a special case, because many other | 2899 # settings in target dicts. SYMROOT is a special case, because many other |
2899 # Xcode variables depend on it, including variables such as | 2900 # Xcode variables depend on it, including variables such as |
2900 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 2901 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
2901 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 2902 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
2902 # files to appear (when present) in the UI as actual files and not red | 2903 # files to appear (when present) in the UI as actual files and not red |
2903 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 2904 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
2904 # and therefore SYMROOT, needs to be set at the project level. | 2905 # and therefore SYMROOT, needs to be set at the project level. |
2905 'SYMROOT': '<(DEPTH)/xcodebuild', | 2906 'SYMROOT': '<(DEPTH)/xcodebuild', |
2906 }, | 2907 }, |
2907 } | 2908 } |
OLD | NEW |