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"', { |
| 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', |
| 147 ], |
| 148 }], |
142 ['enable_plugins==1', { | 149 ['enable_plugins==1', { |
143 'includes': [ | 150 'includes': [ |
144 'pdf.gypi', | 151 'pdf.gypi', |
145 ], | 152 ], |
146 }], | 153 }], |
147 ], | 154 ], |
148 } | 155 } |
OLD | NEW |