| 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 25 matching lines...) Expand all Loading... |
| 36 'network_time.gypi', | 36 'network_time.gypi', |
| 37 'omaha_query_params.gypi', | 37 'omaha_query_params.gypi', |
| 38 'onc.gypi', | 38 'onc.gypi', |
| 39 'os_crypt.gypi', | 39 'os_crypt.gypi', |
| 40 'password_manager.gypi', | 40 'password_manager.gypi', |
| 41 'policy.gypi', | 41 'policy.gypi', |
| 42 'precache.gypi', | 42 'precache.gypi', |
| 43 'pref_registry.gypi', | 43 'pref_registry.gypi', |
| 44 'query_parser.gypi', | 44 'query_parser.gypi', |
| 45 'rappor.gypi', | 45 'rappor.gypi', |
| 46 'search_engines.gypi', | |
| 47 'search_provider_logos.gypi', | 46 'search_provider_logos.gypi', |
| 48 'signin.gypi', | 47 'signin.gypi', |
| 49 'startup_metric_utils.gypi', | 48 'startup_metric_utils.gypi', |
| 50 'translate.gypi', | 49 'translate.gypi', |
| 51 'url_fixer.gypi', | 50 'url_fixer.gypi', |
| 52 'url_matcher.gypi', | 51 'url_matcher.gypi', |
| 53 'user_prefs.gypi', | 52 'user_prefs.gypi', |
| 54 'variations.gypi', | 53 'variations.gypi', |
| 55 'webdata.gypi', | 54 'webdata.gypi', |
| 56 ], | 55 ], |
| (...skipping 28 matching lines...) Expand all Loading... |
| 85 ['chromeos==1', { | 84 ['chromeos==1', { |
| 86 'includes': [ | 85 'includes': [ |
| 87 'user_manager.gypi', | 86 'user_manager.gypi', |
| 88 ], | 87 ], |
| 89 }], | 88 }], |
| 90 ['android_webview_build == 0', { | 89 ['android_webview_build == 0', { |
| 91 # Android WebView fails to build if a dependency on these targets is | 90 # Android WebView fails to build if a dependency on these targets is |
| 92 # introduced. | 91 # introduced. |
| 93 'includes': [ | 92 'includes': [ |
| 94 'gcm_driver.gypi', | 93 'gcm_driver.gypi', |
| 94 'search_engines.gypi', |
| 95 'sync_driver.gypi', | 95 'sync_driver.gypi', |
| 96 'invalidation.gypi', | 96 'invalidation.gypi', |
| 97 ], | 97 ], |
| 98 }], | 98 }], |
| 99 ], | 99 ], |
| 100 } | 100 } |
| OLD | NEW |