| 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 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 'includes': [ | 95 'includes': [ |
| 96 'wifi.gypi', | 96 'wifi.gypi', |
| 97 ], | 97 ], |
| 98 }], | 98 }], |
| 99 ['use_ash==1', { | 99 ['use_ash==1', { |
| 100 'includes': [ | 100 'includes': [ |
| 101 'session_manager.gypi', | 101 'session_manager.gypi', |
| 102 'user_manager.gypi', | 102 'user_manager.gypi', |
| 103 ], | 103 ], |
| 104 }], | 104 }], |
| 105 ['toolkit_views==1', { |
| 106 'includes': [ |
| 107 'constrained_window.gypi', |
| 108 ], |
| 109 }], |
| 105 ['android_webview_build == 0', { | 110 ['android_webview_build == 0', { |
| 106 # Android WebView fails to build if a dependency on these targets is | 111 # Android WebView fails to build if a dependency on these targets is |
| 107 # introduced. | 112 # introduced. |
| 108 'includes': [ | 113 'includes': [ |
| 109 'gcm_driver.gypi', | 114 'gcm_driver.gypi', |
| 110 'omnibox.gypi', | 115 'omnibox.gypi', |
| 111 'renderer_context_menu.gypi', | 116 'renderer_context_menu.gypi', |
| 112 'search_engines.gypi', | 117 'search_engines.gypi', |
| 113 'sync_driver.gypi', | 118 'sync_driver.gypi', |
| 114 'invalidation.gypi', | 119 'invalidation.gypi', |
| 115 ], | 120 ], |
| 116 }], | 121 }], |
| 117 ['enable_plugins==1', { | 122 ['enable_plugins==1', { |
| 118 'includes': [ | 123 'includes': [ |
| 119 'pdf.gypi', | 124 'pdf.gypi', |
| 120 ], | 125 ], |
| 121 }], | 126 }], |
| 122 ], | 127 ], |
| 123 } | 128 } |
| OLD | NEW |