OLD | NEW |
---|---|
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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 # This turns on e.g. the filename-based detection of which | 7 # This turns on e.g. the filename-based detection of which |
8 # platforms to include source files on (e.g. files ending in | 8 # platforms to include source files on (e.g. files ending in |
9 # _mac.h or _mac.cc are only compiled on MacOSX). | 9 # _mac.h or _mac.cc are only compiled on MacOSX). |
10 'chromium_code': 1, | 10 'chromium_code': 1, |
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
132 'includes': [ | 132 'includes': [ |
133 'gcm_driver.gypi', | 133 'gcm_driver.gypi', |
134 'omnibox.gypi', | 134 'omnibox.gypi', |
135 'renderer_context_menu.gypi', | 135 'renderer_context_menu.gypi', |
136 'search_engines.gypi', | 136 'search_engines.gypi', |
137 'sync_driver.gypi', | 137 'sync_driver.gypi', |
138 'invalidation.gypi', | 138 'invalidation.gypi', |
139 'webdata_services.gypi', | 139 'webdata_services.gypi', |
140 ], | 140 ], |
141 }], | 141 }], |
142 ['android_webview_build == 0 and OS != "ios"', { | 142 ['OS != "ios" and (enable_basic_printing==1 or enable_print_preview==1)', { |
Vitaly Buka (NO REVIEWS)
2015/01/08 22:54:27
Isn't (enable_basic_printing==0 and enable_print_p
dgn
2015/01/16 10:26:43
Done.
| |
143 'includes': [ | 143 'includes': [ |
144 # TODO(dgn) move it to a condition based on whether print is enabled | |
145 # once the duplicates have been removed from webview. | |
146 'printing.gypi', | 144 'printing.gypi', |
147 ], | 145 ], |
148 }], | 146 }], |
149 ['enable_plugins==1', { | 147 ['enable_plugins==1', { |
150 'includes': [ | 148 'includes': [ |
151 'pdf.gypi', | 149 'pdf.gypi', |
152 ], | 150 ], |
153 }], | 151 }], |
154 ], | 152 ], |
155 } | 153 } |
OLD | NEW |