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

Side by Side Diff: printing/printing.gyp

Issue 141703005: Remove all exclude rules that filename_rules.gypi already handles. (Closed) Base URL: https://git.chromium.org/chromium/src.git@master
Patch Set: Created 6 years, 11 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 | « base/base.gypi ('k') | ui/ui.gyp » ('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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 ], 97 ],
98 }, 98 },
99 'conditions': [ 99 'conditions': [
100 ['use_aura==1', { 100 ['use_aura==1', {
101 'dependencies': [ 101 'dependencies': [
102 '<(DEPTH)/ui/aura/aura.gyp:aura', 102 '<(DEPTH)/ui/aura/aura.gyp:aura',
103 ], 103 ],
104 }], 104 }],
105 ['toolkit_uses_gtk == 0',{ 105 ['toolkit_uses_gtk == 0',{
106 'sources/': [['exclude', '_cairo\\.cc$']] 106 'sources/': [['exclude', '_cairo\\.cc$']]
107 }], 107 }, { # else: toolkit_uses_gtk == 1
108 ['OS!="mac"', {'sources/': [['exclude', '_mac\\.(cc|mm?)$']]}],
109 ['OS!="win"', {'sources/': [['exclude', '_win\\.cc$']]
110 }, { # else: OS=="win"
111 'sources/': [['exclude', '_posix\\.cc$']]
112 }],
113 ['toolkit_uses_gtk == 1', {
114 'dependencies': [ 108 'dependencies': [
115 # For FT_Init_FreeType and friends. 109 # For FT_Init_FreeType and friends.
116 '../build/linux/system.gyp:freetype2', 110 '../build/linux/system.gyp:freetype2',
117 '../build/linux/system.gyp:gtk', 111 '../build/linux/system.gyp:gtk',
118 '../build/linux/system.gyp:gtkprint', 112 '../build/linux/system.gyp:gtkprint',
119 ], 113 ],
120 }], 114 }],
121 # Mac-Aura does not support printing. 115 # Mac-Aura does not support printing.
122 ['OS=="mac" and use_aura==1',{ 116 ['OS=="mac" and use_aura==1',{
123 'sources!': [ 117 'sources!': [
(...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after
350 }, 344 },
351 'dependencies': [ 345 'dependencies': [
352 '../base/base.gyp:base_java', 346 '../base/base.gyp:base_java',
353 ], 347 ],
354 'includes': [ '../build/java.gypi' ], 348 'includes': [ '../build/java.gypi' ],
355 } 349 }
356 ] 350 ]
357 }], 351 }],
358 ] 352 ]
359 } 353 }
OLDNEW
« no previous file with comments | « base/base.gypi ('k') | ui/ui.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698