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

Side by Side Diff: build/common.gypi

Issue 22577010: Printing: Add a basic printing mode without print preview and cloud print. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 4 months 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 | chrome/app/chrome_main_delegate.cc » ('j') | chrome/app/chrome_main_delegate.cc » ('J')
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 1566 matching lines...) Expand 10 before | Expand all | Expand 10 after
1577 'conditions': [ 1577 'conditions': [
1578 ['"<(GENERATOR)"=="ninja"', { 1578 ['"<(GENERATOR)"=="ninja"', {
1579 'clang%': 1, 1579 'clang%': 1,
1580 'host_os%': "mac", 1580 'host_os%': "mac",
1581 }] 1581 }]
1582 ], 1582 ],
1583 }], 1583 }],
1584 ['enable_extensions==1', { 1584 ['enable_extensions==1', {
1585 'grit_defines': ['-D', 'enable_extensions'], 1585 'grit_defines': ['-D', 'enable_extensions'],
1586 }], 1586 }],
1587 ['enable_printing==1', { 1587 ['enable_printing!=0', {
1588 'grit_defines': ['-D', 'enable_printing'], 1588 'grit_defines': ['-D', 'enable_printing'],
1589 }], 1589 }],
1590 ['enable_themes==1', { 1590 ['enable_themes==1', {
1591 'grit_defines': ['-D', 'enable_themes'], 1591 'grit_defines': ['-D', 'enable_themes'],
1592 }], 1592 }],
1593 ['enable_app_list==1', { 1593 ['enable_app_list==1', {
1594 'grit_defines': ['-D', 'enable_app_list'], 1594 'grit_defines': ['-D', 'enable_app_list'],
1595 }], 1595 }],
1596 ['enable_settings_app==1', { 1596 ['enable_settings_app==1', {
1597 'grit_defines': ['-D', 'enable_settings_app'], 1597 'grit_defines': ['-D', 'enable_settings_app'],
(...skipping 656 matching lines...) Expand 10 before | Expand all | Expand 10 after
2254 ['enable_background==1', { 2254 ['enable_background==1', {
2255 'defines': ['ENABLE_BACKGROUND=1'], 2255 'defines': ['ENABLE_BACKGROUND=1'],
2256 }], 2256 }],
2257 ['enable_automation==1', { 2257 ['enable_automation==1', {
2258 'defines': ['ENABLE_AUTOMATION=1'], 2258 'defines': ['ENABLE_AUTOMATION=1'],
2259 }], 2259 }],
2260 ['enable_google_now==1', { 2260 ['enable_google_now==1', {
2261 'defines': ['ENABLE_GOOGLE_NOW=1'], 2261 'defines': ['ENABLE_GOOGLE_NOW=1'],
2262 }], 2262 }],
2263 ['enable_printing==1', { 2263 ['enable_printing==1', {
2264 'defines': ['ENABLE_FULL_PRINTING=1', 'ENABLE_PRINTING=1'],
2265 }],
2266 ['enable_printing==2', {
cimamoglu1 2013/08/11 18:22:51 I believe an explanation above at the declaration
Lei Zhang 2013/08/12 06:06:15 Done.
2264 'defines': ['ENABLE_PRINTING=1'], 2267 'defines': ['ENABLE_PRINTING=1'],
2265 }], 2268 }],
2266 ['enable_spellcheck==1', { 2269 ['enable_spellcheck==1', {
2267 'defines': ['ENABLE_SPELLCHECK=1'], 2270 'defines': ['ENABLE_SPELLCHECK=1'],
2268 }], 2271 }],
2269 ['enable_captive_portal_detection==1', { 2272 ['enable_captive_portal_detection==1', {
2270 'defines': ['ENABLE_CAPTIVE_PORTAL_DETECTION=1'], 2273 'defines': ['ENABLE_CAPTIVE_PORTAL_DETECTION=1'],
2271 }], 2274 }],
2272 ['enable_app_list==1', { 2275 ['enable_app_list==1', {
2273 'defines': ['ENABLE_APP_LIST=1'], 2276 'defines': ['ENABLE_APP_LIST=1'],
(...skipping 2428 matching lines...) Expand 10 before | Expand all | Expand 10 after
4702 # settings in target dicts. SYMROOT is a special case, because many other 4705 # settings in target dicts. SYMROOT is a special case, because many other
4703 # Xcode variables depend on it, including variables such as 4706 # Xcode variables depend on it, including variables such as
4704 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 4707 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
4705 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 4708 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
4706 # files to appear (when present) in the UI as actual files and not red 4709 # files to appear (when present) in the UI as actual files and not red
4707 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 4710 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
4708 # and therefore SYMROOT, needs to be set at the project level. 4711 # and therefore SYMROOT, needs to be set at the project level.
4709 'SYMROOT': '<(DEPTH)/xcodebuild', 4712 'SYMROOT': '<(DEPTH)/xcodebuild',
4710 }, 4713 },
4711 } 4714 }
OLDNEW
« no previous file with comments | « no previous file | chrome/app/chrome_main_delegate.cc » ('j') | chrome/app/chrome_main_delegate.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698