| 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 640 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 651 }], | 651 }], |
| 652 | 652 |
| 653 # Disable WebRTC for building WebView as part of Android system. | 653 # Disable WebRTC for building WebView as part of Android system. |
| 654 # TODO(boliu): Decide if we want WebRTC, and if so, also merge | 654 # TODO(boliu): Decide if we want WebRTC, and if so, also merge |
| 655 # the necessary third_party repositories. | 655 # the necessary third_party repositories. |
| 656 ['OS=="android" and android_webview_build==1', { | 656 ['OS=="android" and android_webview_build==1', { |
| 657 'enable_webrtc%': 0, | 657 'enable_webrtc%': 0, |
| 658 }], | 658 }], |
| 659 | 659 |
| 660 ['OS=="ios"', { | 660 ['OS=="ios"', { |
| 661 'configuration_policy%': 0, | |
| 662 'disable_ftp_support%': 1, | 661 'disable_ftp_support%': 1, |
| 663 'enable_automation%': 0, | 662 'enable_automation%': 0, |
| 664 'enable_extensions%': 0, | 663 'enable_extensions%': 0, |
| 665 'enable_google_now%': 0, | 664 'enable_google_now%': 0, |
| 666 'cld_version%': 1, | 665 'cld_version%': 1, |
| 667 'enable_printing%': 0, | 666 'enable_printing%': 0, |
| 668 'enable_session_service%': 0, | 667 'enable_session_service%': 0, |
| 669 'enable_themes%': 0, | 668 'enable_themes%': 0, |
| 670 'enable_webrtc%': 0, | 669 'enable_webrtc%': 0, |
| 671 'notifications%': 0, | 670 'notifications%': 0, |
| (...skipping 4166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4838 # settings in target dicts. SYMROOT is a special case, because many other | 4837 # settings in target dicts. SYMROOT is a special case, because many other |
| 4839 # Xcode variables depend on it, including variables such as | 4838 # Xcode variables depend on it, including variables such as |
| 4840 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 4839 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 4841 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 4840 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 4842 # files to appear (when present) in the UI as actual files and not red | 4841 # files to appear (when present) in the UI as actual files and not red |
| 4843 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 4842 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 4844 # and therefore SYMROOT, needs to be set at the project level. | 4843 # and therefore SYMROOT, needs to be set at the project level. |
| 4845 'SYMROOT': '<(DEPTH)/xcodebuild', | 4844 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 4846 }, | 4845 }, |
| 4847 } | 4846 } |
| OLD | NEW |