1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
|
# Copyright (c) 2013 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
{
'variables': {
# This turns on e.g. the filename-based detection of which
# platforms to include source files on (e.g. files ending in
# _mac.h or _mac.cc are only compiled on MacOSX).
'chromium_code': 1,
},
'includes': [
'auto_login_parser.gypi',
'autofill.gypi',
'bookmarks.gypi',
'captive_portal.gypi',
'cloud_devices.gypi',
'component_updater.gypi',
'content_settings.gypi',
'crash.gypi',
'cronet.gypi',
'crx_file.gypi',
'data_reduction_proxy.gypi',
'dns_prefetch.gypi',
'dom_distiller.gypi',
'domain_reliability.gypi',
'enhanced_bookmarks.gypi',
'error_page.gypi',
'favicon.gypi',
'favicon_base.gypi',
'google.gypi',
'handoff.gypi',
'history.gypi',
'infobars.gypi',
'json_schema.gypi',
'keyed_service.gypi',
'language_usage_metrics.gypi',
'leveldb_proto.gypi',
'login.gypi',
'metrics.gypi',
'navigation_metrics.gypi',
'network_time.gypi',
'onc.gypi',
'os_crypt.gypi',
'ownership.gypi',
'packed_ct_ev_whitelist.gypi',
'password_manager.gypi',
'policy.gypi',
'precache.gypi',
'pref_registry.gypi',
'query_parser.gypi',
'rappor.gypi',
'search.gypi',
'search_provider_logos.gypi',
'sessions.gypi',
'signin.gypi',
'startup_metric_utils.gypi',
'suggestions.gypi',
'translate.gypi',
'ui_zoom.gypi',
'update_client.gypi',
'url_fixer.gypi',
'url_matcher.gypi',
'user_prefs.gypi',
'variations.gypi',
'wallpaper.gypi',
'webdata.gypi',
'web_resource.gypi',
],
'conditions': [
['OS != "ios"', {
'includes': [
'app_modal.gypi',
'cdm.gypi',
'copresence_endpoints.gypi',
'navigation_interception.gypi',
'plugins.gypi',
'power.gypi',
'visitedlink.gypi',
'web_cache.gypi',
'web_contents_delegate_android.gypi',
'web_modal.gypi',
],
}],
['OS == "ios"', {
'includes': [
'webp_transcode.gypi',
],
}],
['OS != "android"', {
'includes': [
'feedback.gypi',
]
}],
['OS != "ios" and OS != "android"', {
'includes': [
'copresence.gypi',
'proximity_auth.gypi',
'storage_monitor.gypi',
]
}],
['chromeos == 1', {
'includes': [
'pairing.gypi',
'timers.gypi',
'wifi_sync.gypi',
],
}],
['OS == "win" or OS == "mac"', {
'includes': [
'wifi.gypi',
],
}],
['OS == "win"', {
'includes': [
'browser_watcher.gypi',
],
}],
['chromeos == 1 or use_ash == 1', {
'includes': [
'session_manager.gypi',
'user_manager.gypi',
],
}],
['toolkit_views==1', {
'includes': [
'constrained_window.gypi',
],
}],
['android_webview_build == 0', {
# Android WebView fails to build if a dependency on these targets is
# introduced.
'includes': [
'gcm_driver.gypi',
'omnibox.gypi',
'renderer_context_menu.gypi',
'search_engines.gypi',
'sync_driver.gypi',
'invalidation.gypi',
'webdata_services.gypi',
],
}],
['enable_plugins==1', {
'includes': [
'pdf.gypi',
],
}],
],
}
|