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 760 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
771 # Android OS includes support for proprietary codecs regardless of | 771 # Android OS includes support for proprietary codecs regardless of |
772 # building Chromium or Google Chrome. We also ship Google Chrome and | 772 # building Chromium or Google Chrome. We also ship Google Chrome and |
773 # Chromecast with proprietary codecs. | 773 # Chromecast with proprietary codecs. |
774 ['OS=="android" or branding=="Chrome" or chromecast==1', { | 774 ['OS=="android" or branding=="Chrome" or chromecast==1', { |
775 'proprietary_codecs%': 1, | 775 'proprietary_codecs%': 1, |
776 }, { | 776 }, { |
777 'proprietary_codecs%': 0, | 777 'proprietary_codecs%': 0, |
778 }], | 778 }], |
779 | 779 |
780 ['OS=="mac" or OS=="ios"', { | 780 ['OS=="mac" or OS=="ios"', { |
781 'native_discardable_memory%': 1, | |
782 'native_memory_pressure_signals%': 1, | 781 'native_memory_pressure_signals%': 1, |
783 }], | 782 }], |
784 | 783 |
785 # Enable autofill dialog for Android, Mac and Views-enabled platforms. | 784 # Enable autofill dialog for Android, Mac and Views-enabled platforms. |
786 ['toolkit_views==1 or (OS=="android" and android_webview_build==0) or OS
=="mac"', { | 785 ['toolkit_views==1 or (OS=="android" and android_webview_build==0) or OS
=="mac"', { |
787 'enable_autofill_dialog%': 1, | 786 'enable_autofill_dialog%': 1, |
788 | 787 |
789 'conditions': [ | 788 'conditions': [ |
790 ['buildtype=="Official"', { | 789 ['buildtype=="Official"', { |
791 'enable_prod_wallet_service%': 1, | 790 'enable_prod_wallet_service%': 1, |
(...skipping 5252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6044 # settings in target dicts. SYMROOT is a special case, because many other | 6043 # settings in target dicts. SYMROOT is a special case, because many other |
6045 # Xcode variables depend on it, including variables such as | 6044 # Xcode variables depend on it, including variables such as |
6046 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 6045 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
6047 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 6046 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
6048 # files to appear (when present) in the UI as actual files and not red | 6047 # files to appear (when present) in the UI as actual files and not red |
6049 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 6048 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
6050 # and therefore SYMROOT, needs to be set at the project level. | 6049 # and therefore SYMROOT, needs to be set at the project level. |
6051 'SYMROOT': '<(DEPTH)/xcodebuild', | 6050 'SYMROOT': '<(DEPTH)/xcodebuild', |
6052 }, | 6051 }, |
6053 } | 6052 } |
OLD | NEW |