| 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 883 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 894 }, { | 894 }, { |
| 895 'enable_captive_portal_detection%': 1, | 895 'enable_captive_portal_detection%': 1, |
| 896 'enable_media_router%': 1, | 896 'enable_media_router%': 1, |
| 897 }], | 897 }], |
| 898 | 898 |
| 899 # Enable Skia UI text drawing incrementally on different platforms. | 899 # Enable Skia UI text drawing incrementally on different platforms. |
| 900 # http://crbug.com/105550 | 900 # http://crbug.com/105550 |
| 901 # | 901 # |
| 902 # On Aura, this allows per-tile painting to be used in the browser | 902 # On Aura, this allows per-tile painting to be used in the browser |
| 903 # compositor. | 903 # compositor. |
| 904 ['OS!="android"', { | 904 ['OS!="android" and OS!="ios"', { |
| 905 'use_canvas_skia%': 1, | 905 'use_canvas_skia%': 1, |
| 906 }], | 906 }], |
| 907 | 907 |
| 908 ['chromeos==1', { | 908 ['chromeos==1', { |
| 909 'enable_basic_printing%': 0, | 909 'enable_basic_printing%': 0, |
| 910 'enable_print_preview%': 1, | 910 'enable_print_preview%': 1, |
| 911 # When building for ChromeOS we dont want Chromium to use libjpeg_turb
o. | 911 # When building for ChromeOS we dont want Chromium to use libjpeg_turb
o. |
| 912 'use_libjpeg_turbo%': 0, | 912 'use_libjpeg_turbo%': 0, |
| 913 }], | 913 }], |
| 914 | 914 |
| (...skipping 5229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6144 # settings in target dicts. SYMROOT is a special case, because many other | 6144 # settings in target dicts. SYMROOT is a special case, because many other |
| 6145 # Xcode variables depend on it, including variables such as | 6145 # Xcode variables depend on it, including variables such as |
| 6146 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 6146 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 6147 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 6147 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 6148 # files to appear (when present) in the UI as actual files and not red | 6148 # files to appear (when present) in the UI as actual files and not red |
| 6149 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 6149 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 6150 # and therefore SYMROOT, needs to be set at the project level. | 6150 # and therefore SYMROOT, needs to be set at the project level. |
| 6151 'SYMROOT': '<(DEPTH)/xcodebuild', | 6151 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 6152 }, | 6152 }, |
| 6153 } | 6153 } |
| OLD | NEW |