| 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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 'translate.gypi', | 58 'translate.gypi', |
| 59 'url_fixer.gypi', | 59 'url_fixer.gypi', |
| 60 'url_matcher.gypi', | 60 'url_matcher.gypi', |
| 61 'user_prefs.gypi', | 61 'user_prefs.gypi', |
| 62 'variations.gypi', | 62 'variations.gypi', |
| 63 'webdata.gypi', | 63 'webdata.gypi', |
| 64 ], | 64 ], |
| 65 'conditions': [ | 65 'conditions': [ |
| 66 ['OS != "ios"', { | 66 ['OS != "ios"', { |
| 67 'includes': [ | 67 'includes': [ |
| 68 'app_modal_dialogs.gypi', | 68 'app_modal.gypi', |
| 69 'cdm.gypi', | 69 'cdm.gypi', |
| 70 'copresence_sockets.gypi', | 70 'copresence_sockets.gypi', |
| 71 'navigation_interception.gypi', | 71 'navigation_interception.gypi', |
| 72 'plugins.gypi', | 72 'plugins.gypi', |
| 73 'power.gypi', | 73 'power.gypi', |
| 74 'visitedlink.gypi', | 74 'visitedlink.gypi', |
| 75 'web_cache.gypi', | 75 'web_cache.gypi', |
| 76 'web_contents_delegate_android.gypi', | 76 'web_contents_delegate_android.gypi', |
| 77 'web_modal.gypi', | 77 'web_modal.gypi', |
| 78 ], | 78 ], |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 'invalidation.gypi', | 123 'invalidation.gypi', |
| 124 ], | 124 ], |
| 125 }], | 125 }], |
| 126 ['enable_plugins==1', { | 126 ['enable_plugins==1', { |
| 127 'includes': [ | 127 'includes': [ |
| 128 'pdf.gypi', | 128 'pdf.gypi', |
| 129 ], | 129 ], |
| 130 }], | 130 }], |
| 131 ], | 131 ], |
| 132 } | 132 } |
| OLD | NEW |