| 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 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 'includes': [ | 133 'includes': [ |
| 134 'gcm_driver.gypi', | 134 'gcm_driver.gypi', |
| 135 'omnibox.gypi', | 135 'omnibox.gypi', |
| 136 'renderer_context_menu.gypi', | 136 'renderer_context_menu.gypi', |
| 137 'search_engines.gypi', | 137 'search_engines.gypi', |
| 138 'sync_driver.gypi', | 138 'sync_driver.gypi', |
| 139 'invalidation.gypi', | 139 'invalidation.gypi', |
| 140 'webdata_services.gypi', | 140 'webdata_services.gypi', |
| 141 ], | 141 ], |
| 142 }], | 142 }], |
| 143 ['android_webview_build == 0 and OS != "ios"', { | 143 ['enable_basic_printing==1 or enable_print_preview==1', { |
| 144 'includes': [ | 144 'includes': [ |
| 145 # TODO(dgn) move it to a condition based on whether print is enabled | |
| 146 # once the duplicates have been removed from webview. | |
| 147 'printing.gypi', | 145 'printing.gypi', |
| 148 ], | 146 ], |
| 149 }], | 147 }], |
| 150 ['enable_plugins==1', { | 148 ['enable_plugins==1', { |
| 151 'includes': [ | 149 'includes': [ |
| 152 'pdf.gypi', | 150 'pdf.gypi', |
| 153 ], | 151 ], |
| 154 }], | 152 }], |
| 155 ], | 153 ], |
| 156 } | 154 } |
| OLD | NEW |