| 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 726 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 737 'linux_breakpad%': 0, | 737 'linux_breakpad%': 0, |
| 738 | 738 |
| 739 # Always uses openssl. | 739 # Always uses openssl. |
| 740 'use_openssl%': 1, | 740 'use_openssl%': 1, |
| 741 | 741 |
| 742 'proprietary_codecs%': '<(proprietary_codecs)', | 742 'proprietary_codecs%': '<(proprietary_codecs)', |
| 743 'safe_browsing%': 0, | 743 'safe_browsing%': 0, |
| 744 'configuration_policy%': 0, | 744 'configuration_policy%': 0, |
| 745 'input_speech%': 0, | 745 'input_speech%': 0, |
| 746 'java_bridge%': 1, | 746 'java_bridge%': 1, |
| 747 |
| 748 # Set to 1 once we have a notification system for Android. |
| 749 # http://crbug.com/115320 |
| 747 'notifications%': 0, | 750 'notifications%': 0, |
| 748 | 751 |
| 749 # Builds the gtest targets as a shared_library. | 752 # Builds the gtest targets as a shared_library. |
| 750 # TODO(michaelbai): Use the fixed value 'shared_library' once it | 753 # TODO(michaelbai): Use the fixed value 'shared_library' once it |
| 751 # is fully supported. | 754 # is fully supported. |
| 752 'gtest_target_type%': '<(gtest_target_type)', | 755 'gtest_target_type%': '<(gtest_target_type)', |
| 753 | 756 |
| 754 # Uses system APIs for decoding audio and video. | 757 # Uses system APIs for decoding audio and video. |
| 755 'use_libffmpeg%': '0', | 758 'use_libffmpeg%': '0', |
| 756 | 759 |
| (...skipping 2051 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2808 # settings in target dicts. SYMROOT is a special case, because many other | 2811 # settings in target dicts. SYMROOT is a special case, because many other |
| 2809 # Xcode variables depend on it, including variables such as | 2812 # Xcode variables depend on it, including variables such as |
| 2810 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 2813 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 2811 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 2814 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 2812 # files to appear (when present) in the UI as actual files and not red | 2815 # files to appear (when present) in the UI as actual files and not red |
| 2813 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 2816 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 2814 # and therefore SYMROOT, needs to be set at the project level. | 2817 # and therefore SYMROOT, needs to be set at the project level. |
| 2815 'SYMROOT': '<(DEPTH)/xcodebuild', | 2818 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 2816 }, | 2819 }, |
| 2817 } | 2820 } |
| OLD | NEW |