Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(548)

Side by Side Diff: build/common.gypi

Issue 694633002: Disable basic printing on ChromeOS. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Wed Nov 5 13:54:38 PST 2014 Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | build/config/features.gni » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | build/config/features.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698