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 750 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
761 'cld_version%': 1, | 761 'cld_version%': 1, |
762 'enable_spellcheck%': 0, | 762 'enable_spellcheck%': 0, |
763 'enable_themes%': 0, | 763 'enable_themes%': 0, |
764 'remoting%': 0, | 764 'remoting%': 0, |
765 'arm_neon%': 0, | 765 'arm_neon%': 0, |
766 'arm_neon_optional%': 1, | 766 'arm_neon_optional%': 1, |
767 'native_discardable_memory%': 1, | 767 'native_discardable_memory%': 1, |
768 'native_memory_pressure_signals%': 1, | 768 'native_memory_pressure_signals%': 1, |
769 'enable_printing%': 2, | 769 'enable_printing%': 2, |
770 'enable_task_manager%':0, | 770 'enable_task_manager%':0, |
771 # Set to 1 once we have a notification system for Android. | |
772 # http://crbug.com/115320 | |
773 'notifications%': 0, | |
774 'video_hole%': 1, | 771 'video_hole%': 1, |
775 }], | 772 }], |
776 | 773 |
777 # Android OS includes support for proprietary codecs regardless of | 774 # Android OS includes support for proprietary codecs regardless of |
778 # building Chromium or Google Chrome. We also ship Google Chrome and | 775 # building Chromium or Google Chrome. We also ship Google Chrome and |
779 # Chromecast with proprietary codecs. | 776 # Chromecast with proprietary codecs. |
780 ['OS=="android" or branding=="Chrome" or chromecast==1', { | 777 ['OS=="android" or branding=="Chrome" or chromecast==1', { |
781 'proprietary_codecs%': 1, | 778 'proprietary_codecs%': 1, |
782 }, { | 779 }, { |
783 'proprietary_codecs%': 0, | 780 'proprietary_codecs%': 0, |
(...skipping 5095 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5879 # settings in target dicts. SYMROOT is a special case, because many other | 5876 # settings in target dicts. SYMROOT is a special case, because many other |
5880 # Xcode variables depend on it, including variables such as | 5877 # Xcode variables depend on it, including variables such as |
5881 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 5878 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
5882 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 5879 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
5883 # files to appear (when present) in the UI as actual files and not red | 5880 # files to appear (when present) in the UI as actual files and not red |
5884 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 5881 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
5885 # and therefore SYMROOT, needs to be set at the project level. | 5882 # and therefore SYMROOT, needs to be set at the project level. |
5886 'SYMROOT': '<(DEPTH)/xcodebuild', | 5883 'SYMROOT': '<(DEPTH)/xcodebuild', |
5887 }, | 5884 }, |
5888 } | 5885 } |
OLD | NEW |