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 889 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
900 # Enable Skia UI text drawing incrementally on different platforms. | 900 # Enable Skia UI text drawing incrementally on different platforms. |
901 # http://crbug.com/105550 | 901 # http://crbug.com/105550 |
902 # | 902 # |
903 # On Aura, this allows per-tile painting to be used in the browser | 903 # On Aura, this allows per-tile painting to be used in the browser |
904 # compositor. | 904 # compositor. |
905 ['OS!="android"', { | 905 ['OS!="android"', { |
906 'use_canvas_skia%': 1, | 906 'use_canvas_skia%': 1, |
907 }], | 907 }], |
908 | 908 |
909 ['chromeos==1', { | 909 ['chromeos==1', { |
| 910 'enable_basic_printing%': 0, |
| 911 'enable_print_preview%': 1, |
910 # When building for ChromeOS we dont want Chromium to use libjpeg_turb
o. | 912 # When building for ChromeOS we dont want Chromium to use libjpeg_turb
o. |
911 'use_libjpeg_turbo%': 0, | 913 'use_libjpeg_turbo%': 0, |
912 }], | 914 }], |
913 | 915 |
914 # Do not enable the Settings App on ChromeOS. | 916 # Do not enable the Settings App on ChromeOS. |
915 ['enable_app_list==1 and chromeos==0', { | 917 ['enable_app_list==1 and chromeos==0', { |
916 'enable_settings_app%': 1, | 918 'enable_settings_app%': 1, |
917 }, { | 919 }, { |
918 'enable_settings_app%': 0, | 920 'enable_settings_app%': 0, |
919 }], | 921 }], |
(...skipping 4983 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5903 # settings in target dicts. SYMROOT is a special case, because many other | 5905 # settings in target dicts. SYMROOT is a special case, because many other |
5904 # Xcode variables depend on it, including variables such as | 5906 # Xcode variables depend on it, including variables such as |
5905 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 5907 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
5906 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 5908 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
5907 # files to appear (when present) in the UI as actual files and not red | 5909 # files to appear (when present) in the UI as actual files and not red |
5908 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 5910 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
5909 # and therefore SYMROOT, needs to be set at the project level. | 5911 # and therefore SYMROOT, needs to be set at the project level. |
5910 'SYMROOT': '<(DEPTH)/xcodebuild', | 5912 'SYMROOT': '<(DEPTH)/xcodebuild', |
5911 }, | 5913 }, |
5912 } | 5914 } |
OLD | NEW |