[email protected] | df3ecfde | 2014-05-20 21:52:34 | [diff] [blame] | 1 | # Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 | # Use of this source code is governed by a BSD-style license that can be |
| 3 | # found in the LICENSE file. |
| 4 | |
thakis | 18e42641 | 2017-03-15 12:06:37 | [diff] [blame] | 5 | import("features.gni") |
| 6 | import("//build/buildflag_header.gni") |
[email protected] | 7e4c3314 | 2014-05-21 22:01:32 | [diff] [blame] | 7 | import("//build/config/features.gni") |
| 8 | import("//build/config/ui.gni") |
xhwang | 13eab74 | 2015-11-18 20:29:37 | [diff] [blame] | 9 | import("//media/media_options.gni") |
rockot | 85dce086 | 2015-11-13 01:33:59 | [diff] [blame] | 10 | import("//mojo/public/tools/bindings/mojom.gni") |
brettw | 4b46108 | 2016-11-19 18:55:16 | [diff] [blame] | 11 | import("//ppapi/features/features.gni") |
rsesek | 7b1273af0 | 2016-12-06 20:55:47 | [diff] [blame] | 12 | import("//sandbox/features.gni") |
ochang | dd89a1e | 2016-06-08 16:39:01 | [diff] [blame] | 13 | import("//tools/ipc_fuzzer/ipc_fuzzer.gni") |
dpranke | 517335e | 2015-08-01 02:41:14 | [diff] [blame] | 14 | if (is_mac) { |
| 15 | import("//build/config/mac/mac_sdk.gni") |
| 16 | } |
[email protected] | df3ecfde | 2014-05-20 21:52:34 | [diff] [blame] | 17 | |
thakis | 18e42641 | 2017-03-15 12:06:37 | [diff] [blame] | 18 | # For feature flags internal to content. See content/public/common:features |
| 19 | # for feature flags that clients of contents need to know about. |
| 20 | buildflag_header("features") { |
| 21 | header = "features.h" |
| 22 | |
| 23 | flags = [ "USE_EXTERNAL_POPUP_MENU=$use_external_popup_menu" ] |
| 24 | } |
| 25 | |
[email protected] | df3ecfde | 2014-05-20 21:52:34 | [diff] [blame] | 26 | source_set("common") { |
brettw | b78fc9e | 2016-03-25 21:02:51 | [diff] [blame] | 27 | # Targets external to content should always link to the public API. |
| 28 | # In addition, targets outside of the content component (shell and tests) |
| 29 | # must not link to this because it will duplicate the code in the component |
| 30 | # build. |
| 31 | visibility = [ "//content/*" ] |
[email protected] | df3ecfde | 2014-05-20 21:52:34 | [diff] [blame] | 32 | |
brettw | 8ad01a3 | 2016-09-01 23:26:25 | [diff] [blame] | 33 | sources = [ |
| 34 | "accessibility_messages.h", |
| 35 | "all_messages.h", |
| 36 | "android/address_parser.cc", |
| 37 | "android/address_parser.h", |
| 38 | "android/address_parser_internal.cc", |
| 39 | "android/address_parser_internal.h", |
| 40 | "android/common_jni_registrar.cc", |
| 41 | "android/common_jni_registrar.h", |
| 42 | "android/gin_java_bridge_errors.cc", |
| 43 | "android/gin_java_bridge_errors.h", |
| 44 | "android/gin_java_bridge_value.cc", |
| 45 | "android/gin_java_bridge_value.h", |
| 46 | "android/hash_set.cc", |
| 47 | "android/hash_set.h", |
| 48 | "android/media_metadata_android.cc", |
| 49 | "android/media_metadata_android.h", |
| 50 | "android/resource_request_body_android.cc", |
| 51 | "android/resource_request_body_android.h", |
| 52 | "android/sync_compositor_messages.cc", |
| 53 | "android/sync_compositor_messages.h", |
| 54 | "android/sync_compositor_statics.cc", |
| 55 | "android/sync_compositor_statics.h", |
| 56 | "appcache_interfaces.cc", |
| 57 | "appcache_interfaces.h", |
| 58 | "appcache_messages.h", |
rockot | f62002a | 2016-09-15 00:08:59 | [diff] [blame] | 59 | "associated_interface_provider_impl.cc", |
| 60 | "associated_interface_provider_impl.h", |
| 61 | "associated_interface_registry_impl.cc", |
| 62 | "associated_interface_registry_impl.h", |
brettw | 8ad01a3 | 2016-09-01 23:26:25 | [diff] [blame] | 63 | "ax_content_node_data.cc", |
| 64 | "ax_content_node_data.h", |
peter | a1ab5a9 | 2017-03-24 13:59:53 | [diff] [blame] | 65 | "background_fetch/background_fetch_struct_traits.cc", |
| 66 | "background_fetch/background_fetch_struct_traits.h", |
| 67 | "background_fetch/background_fetch_types.cc", |
| 68 | "background_fetch/background_fetch_types.h", |
brettw | 8ad01a3 | 2016-09-01 23:26:25 | [diff] [blame] | 69 | "bluetooth/web_bluetooth_device_id.cc", |
| 70 | "bluetooth/web_bluetooth_device_id.h", |
| 71 | "browser_plugin/browser_plugin_constants.cc", |
| 72 | "browser_plugin/browser_plugin_constants.h", |
| 73 | "browser_plugin/browser_plugin_messages.h", |
| 74 | "cache_storage/cache_storage_messages.h", |
| 75 | "cache_storage/cache_storage_types.cc", |
| 76 | "cache_storage/cache_storage_types.h", |
| 77 | "child_process_host_impl.cc", |
| 78 | "child_process_host_impl.h", |
| 79 | "child_process_messages.h", |
brettw | 8ad01a3 | 2016-09-01 23:26:25 | [diff] [blame] | 80 | "clipboard_format.h", |
| 81 | "clipboard_messages.h", |
jam | cc96c42 | 2017-02-10 18:50:20 | [diff] [blame] | 82 | "common_sandbox_support_linux.cc", |
brettw | 8ad01a3 | 2016-09-01 23:26:25 | [diff] [blame] | 83 | "content_constants_internal.cc", |
| 84 | "content_constants_internal.h", |
| 85 | "content_export.h", |
| 86 | "content_ipc_logging.cc", |
| 87 | "content_message_generator.cc", |
| 88 | "content_message_generator.h", |
| 89 | "content_param_traits.cc", |
| 90 | "content_param_traits.h", |
| 91 | "content_param_traits_macros.h", |
| 92 | "content_paths.cc", |
arthursonzogni | 7c9cab4 | 2017-02-21 18:58:13 | [diff] [blame] | 93 | "content_security_policy/content_security_policy.cc", |
| 94 | "content_security_policy/content_security_policy.h", |
| 95 | "content_security_policy/csp_context.cc", |
| 96 | "content_security_policy/csp_context.h", |
| 97 | "content_security_policy/csp_directive.cc", |
| 98 | "content_security_policy/csp_directive.h", |
| 99 | "content_security_policy/csp_source.cc", |
| 100 | "content_security_policy/csp_source.h", |
| 101 | "content_security_policy/csp_source_list.cc", |
| 102 | "content_security_policy/csp_source_list.h", |
arthursonzogni | 662aa65 | 2017-03-28 11:09:50 | [diff] [blame] | 103 | "content_security_policy_header.cc", |
brettw | 8ad01a3 | 2016-09-01 23:26:25 | [diff] [blame] | 104 | "content_security_policy_header.h", |
| 105 | "content_switches_internal.cc", |
| 106 | "content_switches_internal.h", |
| 107 | "cross_site_document_classifier.cc", |
| 108 | "cross_site_document_classifier.h", |
| 109 | "cursors/webcursor.cc", |
| 110 | "cursors/webcursor.h", |
| 111 | "cursors/webcursor_android.cc", |
| 112 | "cursors/webcursor_aura.cc", |
| 113 | "cursors/webcursor_aurawin.cc", |
| 114 | "cursors/webcursor_aurax11.cc", |
| 115 | "cursors/webcursor_mac.mm", |
| 116 | "cursors/webcursor_ozone.cc", |
| 117 | "database_messages.h", |
| 118 | "date_time_suggestion.h", |
brettw | 8ad01a3 | 2016-09-01 23:26:25 | [diff] [blame] | 119 | "devtools_messages.h", |
brettw | 8ad01a3 | 2016-09-01 23:26:25 | [diff] [blame] | 120 | "dom_storage/dom_storage_map.cc", |
| 121 | "dom_storage/dom_storage_map.h", |
| 122 | "dom_storage/dom_storage_messages.h", |
carlosk | 29da4fe | 2016-11-29 00:01:29 | [diff] [blame] | 123 | "download/mhtml_save_status.cc", |
| 124 | "download/mhtml_save_status.h", |
brettw | 8ad01a3 | 2016-09-01 23:26:25 | [diff] [blame] | 125 | "drag_event_source_info.h", |
| 126 | "drag_messages.h", |
| 127 | "drag_traits.h", |
| 128 | "dwrite_font_proxy_messages.h", |
| 129 | "edit_command.h", |
iclelland | 9071e0e | 2017-02-03 06:35:56 | [diff] [blame] | 130 | "feature_policy/feature_policy.cc", |
| 131 | "feature_policy/feature_policy.h", |
brettw | 8ad01a3 | 2016-09-01 23:26:25 | [diff] [blame] | 132 | "file_utilities_messages.h", |
| 133 | "fileapi/file_system_messages.h", |
| 134 | "font_cache_dispatcher_win.cc", |
| 135 | "font_cache_dispatcher_win.h", |
| 136 | "font_config_ipc_linux.cc", |
| 137 | "font_config_ipc_linux.h", |
| 138 | "font_list.cc", |
| 139 | "font_list.h", |
| 140 | "font_list_android.cc", |
| 141 | "font_list_fontconfig.cc", |
| 142 | "font_list_mac.mm", |
| 143 | "font_list_win.cc", |
| 144 | "frame_message_enums.h", |
| 145 | "frame_messages.h", |
| 146 | "frame_owner_properties.cc", |
| 147 | "frame_owner_properties.h", |
| 148 | "frame_replication_state.cc", |
| 149 | "frame_replication_state.h", |
brettw | 8ad01a3 | 2016-09-01 23:26:25 | [diff] [blame] | 150 | "generic_shared_memory_id_generator.cc", |
| 151 | "generic_shared_memory_id_generator.h", |
| 152 | "gin_java_bridge_messages.h", |
brettw | 8ad01a3 | 2016-09-01 23:26:25 | [diff] [blame] | 153 | "gpu_host_messages.h", |
brettw | 8ad01a3 | 2016-09-01 23:26:25 | [diff] [blame] | 154 | "host_shared_bitmap_manager.cc", |
| 155 | "host_shared_bitmap_manager.h", |
| 156 | "in_process_child_thread_params.cc", |
| 157 | "in_process_child_thread_params.h", |
| 158 | "indexed_db/indexed_db_constants.h", |
| 159 | "indexed_db/indexed_db_key.cc", |
| 160 | "indexed_db/indexed_db_key.h", |
| 161 | "indexed_db/indexed_db_key_path.cc", |
| 162 | "indexed_db/indexed_db_key_path.h", |
| 163 | "indexed_db/indexed_db_key_range.cc", |
| 164 | "indexed_db/indexed_db_key_range.h", |
reillyg | 627e7f7 | 2016-10-20 05:12:43 | [diff] [blame] | 165 | "indexed_db/indexed_db_metadata.cc", |
| 166 | "indexed_db/indexed_db_metadata.h", |
reillyg | 627e7f7 | 2016-10-20 05:12:43 | [diff] [blame] | 167 | "indexed_db/indexed_db_struct_traits.cc", |
| 168 | "indexed_db/indexed_db_struct_traits.h", |
brettw | 8ad01a3 | 2016-09-01 23:26:25 | [diff] [blame] | 169 | "input/event_with_latency_info.h", |
| 170 | "input/gesture_event_stream_validator.cc", |
| 171 | "input/gesture_event_stream_validator.h", |
| 172 | "input/input_event.cc", |
| 173 | "input/input_event.h", |
| 174 | "input/input_event_ack.cc", |
| 175 | "input/input_event_ack.h", |
dtapuska | 120e997 | 2016-11-07 20:13:39 | [diff] [blame] | 176 | "input/input_event_ack_source.h", |
| 177 | "input/input_event_ack_state.h", |
brettw | 8ad01a3 | 2016-09-01 23:26:25 | [diff] [blame] | 178 | "input/input_event_dispatch_type.h", |
| 179 | "input/input_event_stream_validator.cc", |
| 180 | "input/input_event_stream_validator.h", |
| 181 | "input/input_param_traits.cc", |
| 182 | "input/input_param_traits.h", |
| 183 | "input/synthetic_gesture_packet.cc", |
| 184 | "input/synthetic_gesture_packet.h", |
| 185 | "input/synthetic_gesture_params.cc", |
| 186 | "input/synthetic_gesture_params.h", |
| 187 | "input/synthetic_pinch_gesture_params.cc", |
| 188 | "input/synthetic_pinch_gesture_params.h", |
lanwei | 3df2fbb | 2016-12-21 22:10:02 | [diff] [blame] | 189 | "input/synthetic_pointer_action_list_params.cc", |
| 190 | "input/synthetic_pointer_action_list_params.h", |
brettw | 8ad01a3 | 2016-09-01 23:26:25 | [diff] [blame] | 191 | "input/synthetic_pointer_action_params.cc", |
| 192 | "input/synthetic_pointer_action_params.h", |
| 193 | "input/synthetic_smooth_drag_gesture_params.cc", |
| 194 | "input/synthetic_smooth_drag_gesture_params.h", |
| 195 | "input/synthetic_smooth_scroll_gesture_params.cc", |
| 196 | "input/synthetic_smooth_scroll_gesture_params.h", |
| 197 | "input/synthetic_tap_gesture_params.cc", |
| 198 | "input/synthetic_tap_gesture_params.h", |
| 199 | "input/synthetic_web_input_event_builders.cc", |
| 200 | "input/synthetic_web_input_event_builders.h", |
| 201 | "input/touch_event_stream_validator.cc", |
| 202 | "input/touch_event_stream_validator.h", |
brettw | 8ad01a3 | 2016-09-01 23:26:25 | [diff] [blame] | 203 | "input/web_touch_event_traits.cc", |
| 204 | "input/web_touch_event_traits.h", |
| 205 | "input_messages.h", |
| 206 | "inter_process_time_ticks_converter.cc", |
| 207 | "inter_process_time_ticks_converter.h", |
| 208 | "layer_tree_settings_factory.cc", |
| 209 | "layer_tree_settings_factory.h", |
| 210 | "mac/attributed_string_coder.h", |
| 211 | "mac/attributed_string_coder.mm", |
| 212 | "mac/font_descriptor.h", |
| 213 | "mac/font_descriptor.mm", |
| 214 | "mac/font_loader.h", |
| 215 | "mac/font_loader.mm", |
| 216 | "manifest_manager_messages.h", |
| 217 | "media/aec_dump_messages.h", |
| 218 | "media/audio_messages.h", |
| 219 | "media/cdm_info.cc", |
guidou | cc6d460 | 2016-09-23 21:28:43 | [diff] [blame] | 220 | "media/media_devices.cc", |
| 221 | "media/media_devices.h", |
guidou | 9357cc5 | 2016-10-11 19:53:36 | [diff] [blame] | 222 | "media/media_devices_param_traits.cc", |
| 223 | "media/media_devices_param_traits.h", |
brettw | 8ad01a3 | 2016-09-01 23:26:25 | [diff] [blame] | 224 | "media/media_player_delegate_messages.h", |
| 225 | "media/media_player_messages_android.h", |
brettw | 8ad01a3 | 2016-09-01 23:26:25 | [diff] [blame] | 226 | "media/media_stream_messages.h", |
| 227 | "media/media_stream_options.cc", |
| 228 | "media/media_stream_options.h", |
| 229 | "media/media_stream_track_metrics_host_messages.h", |
| 230 | "media/midi_messages.h", |
| 231 | "media/surface_view_manager_messages_android.h", |
| 232 | "media/video_capture.h", |
brettw | 8ad01a3 | 2016-09-01 23:26:25 | [diff] [blame] | 233 | "memory_messages.h", |
darin | 2d145fe | 2017-02-16 15:22:35 | [diff] [blame] | 234 | "message_port.cc", |
| 235 | "message_port.h", |
brettw | 8ad01a3 | 2016-09-01 23:26:25 | [diff] [blame] | 236 | "navigation_gesture.h", |
| 237 | "navigation_params.cc", |
| 238 | "navigation_params.h", |
| 239 | "net/url_fetcher.cc", |
| 240 | "net/url_request_service_worker_data.cc", |
| 241 | "net/url_request_service_worker_data.h", |
| 242 | "net/url_request_user_data.cc", |
| 243 | "net/url_request_user_data.h", |
brettw | 8ad01a3 | 2016-09-01 23:26:25 | [diff] [blame] | 244 | "origin_trials/trial_token.cc", |
| 245 | "origin_trials/trial_token.h", |
| 246 | "origin_trials/trial_token_validator.cc", |
| 247 | "origin_trials/trial_token_validator.h", |
| 248 | "origin_util.cc", |
| 249 | "p2p_messages.h", |
| 250 | "page_state_serialization.cc", |
| 251 | "page_state_serialization.h", |
| 252 | "page_zoom.cc", |
| 253 | "pepper_file_util.cc", |
| 254 | "pepper_file_util.h", |
| 255 | "pepper_plugin_list.cc", |
| 256 | "pepper_plugin_list.h", |
| 257 | "pepper_renderer_instance_data.cc", |
| 258 | "pepper_renderer_instance_data.h", |
| 259 | "platform_notification_messages.h", |
| 260 | "plugin_list.cc", |
| 261 | "plugin_list.h", |
mfoltz | 0dc2a6b | 2017-03-07 18:24:19 | [diff] [blame] | 262 | "presentation/presentation_struct_traits.cc", |
| 263 | "presentation/presentation_struct_traits.h", |
brettw | 8ad01a3 | 2016-09-01 23:26:25 | [diff] [blame] | 264 | "process_type.cc", |
asanka | c1ab029 | 2016-12-08 21:53:33 | [diff] [blame] | 265 | "quarantine/quarantine.cc", |
| 266 | "quarantine/quarantine_constants_linux.h", |
| 267 | "quarantine/quarantine_linux.cc", |
| 268 | "quarantine/quarantine_mac.mm", |
| 269 | "quarantine/quarantine_win.cc", |
brettw | 8ad01a3 | 2016-09-01 23:26:25 | [diff] [blame] | 270 | "quota_messages.h", |
| 271 | "render_process_messages.h", |
| 272 | "resize_params.cc", |
| 273 | "resize_params.h", |
| 274 | "resource_messages.cc", |
| 275 | "resource_messages.h", |
| 276 | "resource_request.cc", |
| 277 | "resource_request.h", |
| 278 | "resource_request_body_impl.cc", |
| 279 | "resource_request_body_impl.h", |
| 280 | "resource_request_completion_status.cc", |
| 281 | "resource_request_completion_status.h", |
| 282 | "sandbox_init_mac.cc", |
| 283 | "sandbox_init_mac.h", |
| 284 | "sandbox_init_win.cc", |
| 285 | "sandbox_linux/android/sandbox_bpf_base_policy_android.cc", |
| 286 | "sandbox_linux/android/sandbox_bpf_base_policy_android.h", |
| 287 | "sandbox_linux/bpf_cros_arm_gpu_policy_linux.cc", |
| 288 | "sandbox_linux/bpf_cros_arm_gpu_policy_linux.h", |
| 289 | "sandbox_linux/bpf_gpu_policy_linux.cc", |
| 290 | "sandbox_linux/bpf_gpu_policy_linux.h", |
| 291 | "sandbox_linux/bpf_ppapi_policy_linux.cc", |
| 292 | "sandbox_linux/bpf_ppapi_policy_linux.h", |
| 293 | "sandbox_linux/bpf_renderer_policy_linux.cc", |
| 294 | "sandbox_linux/bpf_renderer_policy_linux.h", |
| 295 | "sandbox_linux/bpf_utility_policy_linux.cc", |
| 296 | "sandbox_linux/bpf_utility_policy_linux.h", |
| 297 | "sandbox_linux/sandbox_bpf_base_policy_linux.cc", |
| 298 | "sandbox_linux/sandbox_bpf_base_policy_linux.h", |
| 299 | "sandbox_linux/sandbox_debug_handling_linux.cc", |
| 300 | "sandbox_linux/sandbox_debug_handling_linux.h", |
| 301 | "sandbox_linux/sandbox_init_linux.cc", |
| 302 | "sandbox_linux/sandbox_linux.cc", |
| 303 | "sandbox_linux/sandbox_linux.h", |
| 304 | "sandbox_linux/sandbox_seccomp_bpf_linux.cc", |
| 305 | "sandbox_linux/sandbox_seccomp_bpf_linux.h", |
| 306 | "sandbox_mac.h", |
| 307 | "sandbox_mac.mm", |
| 308 | "sandbox_win.cc", |
| 309 | "sandbox_win.h", |
| 310 | "savable_subframe.h", |
brettw | 8ad01a3 | 2016-09-01 23:26:25 | [diff] [blame] | 311 | "send_zygote_child_ping_linux.cc", |
ben | d32292b | 2016-10-07 00:21:58 | [diff] [blame] | 312 | "service_manager/embedded_service_runner.cc", |
| 313 | "service_manager/embedded_service_runner.h", |
| 314 | "service_manager/service_manager_connection_impl.cc", |
| 315 | "service_manager/service_manager_connection_impl.h", |
brettw | 8ad01a3 | 2016-09-01 23:26:25 | [diff] [blame] | 316 | "service_worker/embedded_worker_messages.h", |
| 317 | "service_worker/embedded_worker_settings.h", |
shimazu | 5de409e4 | 2016-09-29 08:45:28 | [diff] [blame] | 318 | "service_worker/embedded_worker_start_params.cc", |
| 319 | "service_worker/embedded_worker_start_params.h", |
brettw | 8ad01a3 | 2016-09-01 23:26:25 | [diff] [blame] | 320 | "service_worker/service_worker_client_info.cc", |
| 321 | "service_worker/service_worker_client_info.h", |
| 322 | "service_worker/service_worker_messages.h", |
shimazu | 3b85dfb | 2017-02-21 13:03:30 | [diff] [blame] | 323 | "service_worker/service_worker_provider_host_info.cc", |
| 324 | "service_worker/service_worker_provider_host_info.h", |
brettw | 8ad01a3 | 2016-09-01 23:26:25 | [diff] [blame] | 325 | "service_worker/service_worker_status_code.cc", |
| 326 | "service_worker/service_worker_status_code.h", |
brettw | 8ad01a3 | 2016-09-01 23:26:25 | [diff] [blame] | 327 | "service_worker/service_worker_types.cc", |
| 328 | "service_worker/service_worker_types.h", |
| 329 | "service_worker/service_worker_utils.cc", |
| 330 | "service_worker/service_worker_utils.h", |
brettw | 8ad01a3 | 2016-09-01 23:26:25 | [diff] [blame] | 331 | "site_isolation_policy.cc", |
| 332 | "site_isolation_policy.h", |
| 333 | "speech_recognition_messages.h", |
brettw | 8ad01a3 | 2016-09-01 23:26:25 | [diff] [blame] | 334 | "swapped_out_messages.cc", |
| 335 | "swapped_out_messages.h", |
| 336 | "text_input_client_messages.h", |
| 337 | "text_input_state.cc", |
| 338 | "text_input_state.h", |
yhirano | 933ee58 | 2017-01-27 13:28:40 | [diff] [blame] | 339 | "url_request_struct_traits.cc", |
| 340 | "url_request_struct_traits.h", |
brettw | 8ad01a3 | 2016-09-01 23:26:25 | [diff] [blame] | 341 | "url_schemes.cc", |
| 342 | "url_schemes.h", |
| 343 | "user_agent.cc", |
| 344 | "utility_messages.h", |
| 345 | "view_message_enums.h", |
| 346 | "view_messages.h", |
| 347 | "worker_messages.h", |
| 348 | "zygote_commands_linux.h", |
| 349 | ] |
[email protected] | df3ecfde | 2014-05-20 21:52:34 | [diff] [blame] | 350 | |
brettw | 1deb76bc | 2015-02-18 19:28:20 | [diff] [blame] | 351 | configs += [ |
| 352 | "//content:content_implementation", |
brettw | bc8b2a2 | 2015-07-28 18:24:42 | [diff] [blame] | 353 | "//build/config:precompiled_headers", |
brettw | 1deb76bc | 2015-02-18 19:28:20 | [diff] [blame] | 354 | "//build/config/compiler:no_size_t_to_int_warning", |
henryhsu | 5580c3ab | 2016-07-14 05:11:41 | [diff] [blame] | 355 | "//media/gpu:gpu_config", |
brettw | 1deb76bc | 2015-02-18 19:28:20 | [diff] [blame] | 356 | ] |
[email protected] | df3ecfde | 2014-05-20 21:52:34 | [diff] [blame] | 357 | |
Brett Wilson | e5389527 | 2014-09-23 23:41:46 | [diff] [blame] | 358 | public_deps = [ |
jam | b3c1195df | 2016-03-21 20:41:29 | [diff] [blame] | 359 | ":mojo_bindings", |
xlai | 8f40538 | 2016-09-01 19:46:22 | [diff] [blame] | 360 | "//cc", |
Brett Wilson | e5389527 | 2014-09-23 23:41:46 | [diff] [blame] | 361 | "//gpu/command_buffer/common", |
agrieve | e786dac | 2015-12-02 14:45:22 | [diff] [blame] | 362 | "//ipc", |
Brett Wilson | e5389527 | 2014-09-23 23:41:46 | [diff] [blame] | 363 | "//third_party/WebKit/public:blink_headers", |
| 364 | ] |
[email protected] | df3ecfde | 2014-05-20 21:52:34 | [diff] [blame] | 365 | deps = [ |
thakis | 18e42641 | 2017-03-15 12:06:37 | [diff] [blame] | 366 | ":features", |
[email protected] | df3ecfde | 2014-05-20 21:52:34 | [diff] [blame] | 367 | "//base", |
brettw | 6334088 | 2016-03-22 17:09:49 | [diff] [blame] | 368 | "//base/third_party/dynamic_annotations", |
[email protected] | 7e4c3314 | 2014-05-21 22:01:32 | [diff] [blame] | 369 | "//build/util:webkit_version", |
fsamuel | 812b848 | 2016-05-16 18:52:18 | [diff] [blame] | 370 | "//cc/ipc", |
brettw | 6334088 | 2016-03-22 17:09:49 | [diff] [blame] | 371 | "//cc/surfaces", |
penghuang | d81c1a6 | 2016-11-02 20:06:06 | [diff] [blame] | 372 | "//components/discardable_memory/common", |
[email protected] | df3ecfde | 2014-05-20 21:52:34 | [diff] [blame] | 373 | "//components/tracing", |
zhenw | 062a9452 | 2015-06-22 20:55:28 | [diff] [blame] | 374 | "//components/tracing:startup_tracing", |
brettw | 26c6ab45 | 2016-06-23 00:41:09 | [diff] [blame] | 375 | "//content:resources", |
| 376 | "//content/app/resources", |
alexis.menard | b39a3082 | 2016-09-30 15:14:39 | [diff] [blame] | 377 | "//device/base/synchronization", |
jam | b3c1195df | 2016-03-21 20:41:29 | [diff] [blame] | 378 | "//device/bluetooth", |
brettw | 6334088 | 2016-03-22 17:09:49 | [diff] [blame] | 379 | "//gpu", |
jam | b3c1195df | 2016-03-21 20:41:29 | [diff] [blame] | 380 | "//gpu/command_buffer/client:gles2_c_lib", |
| 381 | "//gpu/command_buffer/client:gles2_cmd_helper", |
| 382 | "//gpu/command_buffer/client:gles2_implementation", |
jbroman | cba3d2fe | 2014-09-16 01:04:24 | [diff] [blame] | 383 | "//gpu/command_buffer/client:gles2_interface", |
brettw | 542f753 | 2015-04-06 22:35:45 | [diff] [blame] | 384 | "//gpu/command_buffer/common:gles2_utils", |
jam | b3c1195df | 2016-03-21 20:41:29 | [diff] [blame] | 385 | "//gpu/command_buffer/service", |
penghuang | 346a46f9 | 2016-03-31 21:37:52 | [diff] [blame] | 386 | "//gpu/ipc/client", |
jam | b3c1195df | 2016-03-21 20:41:29 | [diff] [blame] | 387 | "//gpu/ipc/common", |
| 388 | "//gpu/skia_bindings", |
| 389 | "//ipc", |
jam | b3c1195df | 2016-03-21 20:41:29 | [diff] [blame] | 390 | "//media", |
| 391 | "//media:shared_memory_support", |
jam | c17b7fa0 | 2016-05-12 03:57:55 | [diff] [blame] | 392 | "//media/base/ipc", |
mcasas | e40d752 | 2016-06-21 16:11:40 | [diff] [blame] | 393 | "//media/capture", |
chfremer | b689c2a | 2016-10-27 23:04:46 | [diff] [blame] | 394 | "//media/capture/ipc", |
penghuang | 13b168b | 2016-04-07 15:23:31 | [diff] [blame] | 395 | "//media/gpu/ipc/client", |
fsamuel | 29ebf3c | 2016-04-01 00:20:00 | [diff] [blame] | 396 | "//media/gpu/ipc/common", |
jam | b3c1195df | 2016-03-21 20:41:29 | [diff] [blame] | 397 | "//media/midi", |
sammc | 64324c3a | 2017-01-05 00:40:15 | [diff] [blame] | 398 | "//media/midi:mojo", |
jam | b3c1195df | 2016-03-21 20:41:29 | [diff] [blame] | 399 | "//mojo/common:common_base", |
jam | b3c1195df | 2016-03-21 20:41:29 | [diff] [blame] | 400 | "//mojo/edk/system", |
[email protected] | df3ecfde | 2014-05-20 21:52:34 | [diff] [blame] | 401 | "//net", |
brettw | 4b46108 | 2016-11-19 18:55:16 | [diff] [blame] | 402 | "//ppapi/features", |
jam | b3c1195df | 2016-03-21 20:41:29 | [diff] [blame] | 403 | "//sandbox", |
rsesek | 7b1273af0 | 2016-12-06 20:55:47 | [diff] [blame] | 404 | "//sandbox:sandbox_features", |
chiniforooshan | 6e4c507 | 2017-03-17 07:56:56 | [diff] [blame] | 405 | "//services/resource_coordinator/public/interfaces", |
rockot | 734fb66 | 2016-10-15 16:41:30 | [diff] [blame] | 406 | "//services/service_manager", |
rockot | 60d92c2 | 2017-03-21 06:35:23 | [diff] [blame] | 407 | "//services/service_manager/embedder", |
rockot | 734fb66 | 2016-10-15 16:41:30 | [diff] [blame] | 408 | "//services/service_manager/public/cpp", |
| 409 | "//services/service_manager/public/interfaces", |
| 410 | "//services/service_manager/runner/common", |
ben | 6b0453d1 | 2016-07-02 04:27:19 | [diff] [blame] | 411 | "//services/ui/public/interfaces", |
mcasas | c3b336b | 2016-10-07 14:55:45 | [diff] [blame] | 412 | "//services/video_capture/public/interfaces", |
[email protected] | df3ecfde | 2014-05-20 21:52:34 | [diff] [blame] | 413 | "//skia", |
jam | b3c1195df | 2016-03-21 20:41:29 | [diff] [blame] | 414 | "//storage/common", |
jam | b3c1195df | 2016-03-21 20:41:29 | [diff] [blame] | 415 | "//third_party/boringssl", |
[email protected] | df3ecfde | 2014-05-20 21:52:34 | [diff] [blame] | 416 | "//third_party/icu", |
brettw | c15ed73 | 2016-03-21 23:14:29 | [diff] [blame] | 417 | "//third_party/webrtc/base:rtc_base", |
kjellander | e3cbd6d | 2017-02-28 06:49:46 | [diff] [blame] | 418 | "//third_party/webrtc_overrides", |
[email protected] | df3ecfde | 2014-05-20 21:52:34 | [diff] [blame] | 419 | "//ui/accessibility", |
[email protected] | 52140d88 | 2014-05-30 19:22:40 | [diff] [blame] | 420 | "//ui/base", |
spang | 1c36fac | 2015-02-05 19:55:12 | [diff] [blame] | 421 | "//ui/base/ime", |
brettw | 26c6ab45 | 2016-06-23 00:41:09 | [diff] [blame] | 422 | "//ui/display", |
chongz | a8ba91fc | 2016-08-16 21:39:17 | [diff] [blame] | 423 | "//ui/events/blink", |
[email protected] | df3ecfde | 2014-05-20 21:52:34 | [diff] [blame] | 424 | "//ui/gfx", |
| 425 | "//ui/gfx/geometry", |
[email protected] | d7e69fa | 2014-07-24 21:19:28 | [diff] [blame] | 426 | "//ui/gfx/ipc", |
ccameron | e0d9f38 | 2016-07-19 20:12:15 | [diff] [blame] | 427 | "//ui/gfx/ipc/color", |
fsamuel | 6b98cf9 | 2016-04-28 05:42:24 | [diff] [blame] | 428 | "//ui/gfx/ipc/geometry", |
markdittmer | 99d77bf | 2016-03-31 19:03:24 | [diff] [blame] | 429 | "//ui/gfx/ipc/skia", |
jam | b3c1195df | 2016-03-21 20:41:29 | [diff] [blame] | 430 | "//ui/gl", |
mfomitchev | 3ba450ad | 2017-04-03 18:20:40 | [diff] [blame^] | 431 | "//ui/latency/ipc", |
[email protected] | a1d7d4f | 2014-07-16 21:33:36 | [diff] [blame] | 432 | "//ui/shell_dialogs", |
[email protected] | df3ecfde | 2014-05-20 21:52:34 | [diff] [blame] | 433 | "//url", |
markdittmer | 67b71ea | 2016-03-03 22:40:03 | [diff] [blame] | 434 | "//url/ipc:url_ipc", |
[email protected] | df3ecfde | 2014-05-20 21:52:34 | [diff] [blame] | 435 | ] |
[email protected] | 7e4c3314 | 2014-05-21 22:01:32 | [diff] [blame] | 436 | |
ben | 3f5f999 | 2015-11-19 10:38:30 | [diff] [blame] | 437 | defines = [] |
[email protected] | 7e4c3314 | 2014-05-21 22:01:32 | [diff] [blame] | 438 | include_dirs = [] |
[email protected] | 7e4c3314 | 2014-05-21 22:01:32 | [diff] [blame] | 439 | libs = [] |
| 440 | ldflags = [] |
| 441 | |
sammc | 64324c3a | 2017-01-05 00:40:15 | [diff] [blame] | 442 | allow_circular_includes_from = [ ":mojo_bindings" ] |
yhirano | 72f6227 | 2016-08-13 12:50:06 | [diff] [blame] | 443 | |
[email protected] | 7e4c3314 | 2014-05-21 22:01:32 | [diff] [blame] | 444 | if (is_android && use_seccomp_bpf) { |
| 445 | set_sources_assignment_filter([]) |
| 446 | sources += [ |
| 447 | "sandbox_linux/sandbox_bpf_base_policy_linux.cc", |
| 448 | "sandbox_linux/sandbox_bpf_base_policy_linux.h", |
| 449 | ] |
| 450 | set_sources_assignment_filter(sources_assignment_filter) |
| 451 | } |
| 452 | |
| 453 | if (is_mac) { |
markdittmer | 6e70beb8 | 2016-05-02 05:40:47 | [diff] [blame] | 454 | deps += [ "//sandbox/mac:seatbelt" ] |
[email protected] | 7e4c3314 | 2014-05-21 22:01:32 | [diff] [blame] | 455 | } |
| 456 | |
| 457 | if (is_android) { |
James Robinson | 060f2e3 | 2014-09-10 22:31:37 | [diff] [blame] | 458 | deps += [ |
James Robinson | 060f2e3 | 2014-09-10 22:31:37 | [diff] [blame] | 459 | "//content/public/android:common_aidl", |
rockot | ac2a36e | 2015-11-20 17:56:54 | [diff] [blame] | 460 | "//content/public/android:jni", |
James Robinson | 060f2e3 | 2014-09-10 22:31:37 | [diff] [blame] | 461 | ] |
[email protected] | 7e4c3314 | 2014-05-21 22:01:32 | [diff] [blame] | 462 | |
| 463 | libs += [ "android" ] |
| 464 | } |
| 465 | |
agrieve | e786dac | 2015-12-02 14:45:22 | [diff] [blame] | 466 | if (is_debug && !is_component_build && enable_plugins) { |
erg | 85ac931 | 2015-04-16 18:20:53 | [diff] [blame] | 467 | # Content depends on the PPAPI message logging stuff; if this isn't here, |
| 468 | # some unit test binaries won't compile. This only worked in release mode |
| 469 | # because logging is disabled there. |
| 470 | deps += [ "//ppapi/proxy:ipc_sources" ] |
| 471 | } |
| 472 | |
reveman | bc2de2b | 2014-11-17 03:21:32 | [diff] [blame] | 473 | if (use_ozone) { |
spang | 03357697 | 2016-02-24 00:10:57 | [diff] [blame] | 474 | deps += [ "//ui/ozone" ] |
reveman | bc2de2b | 2014-11-17 03:21:32 | [diff] [blame] | 475 | } else { |
drott | e70ca0a | 2016-08-26 09:24:36 | [diff] [blame] | 476 | sources -= [ "cursors/webcursor_ozone.cc" ] |
[email protected] | 7e4c3314 | 2014-05-21 22:01:32 | [diff] [blame] | 477 | } |
| 478 | |
mfomitchev | 2977ebf | 2015-08-07 00:12:29 | [diff] [blame] | 479 | if (!use_aura || is_android) { |
[email protected] | 79ff77e6 | 2014-07-08 10:59:16 | [diff] [blame] | 480 | sources -= [ "cursors/webcursor_aura.cc" ] |
| 481 | } |
| 482 | |
[email protected] | 7e4c3314 | 2014-05-21 22:01:32 | [diff] [blame] | 483 | if (!use_aura || !use_x11) { |
| 484 | sources -= [ "cursors/webcursor_aurax11.cc" ] |
| 485 | } |
| 486 | |
drott | e70ca0a | 2016-08-26 09:24:36 | [diff] [blame] | 487 | if (is_linux) { |
| 488 | deps += [ "//build/linux:fontconfig" ] |
| 489 | } |
| 490 | |
| 491 | if (is_mac || is_win || is_android) { |
| 492 | sources -= [ "font_list_fontconfig.cc" ] |
[email protected] | 7e4c3314 | 2014-05-21 22:01:32 | [diff] [blame] | 493 | } |
| 494 | |
[email protected] | 7e4c3314 | 2014-05-21 22:01:32 | [diff] [blame] | 495 | if (enable_plugins) { |
brettw | 26c6ab45 | 2016-06-23 00:41:09 | [diff] [blame] | 496 | deps += [ |
scottmg | 3cab0ba | 2017-01-25 18:34:16 | [diff] [blame] | 497 | "//ppapi/proxy:ipc", |
brettw | 26c6ab45 | 2016-06-23 00:41:09 | [diff] [blame] | 498 | "//ppapi/shared_impl", |
| 499 | ] |
[email protected] | 7e4c3314 | 2014-05-21 22:01:32 | [diff] [blame] | 500 | } else { |
| 501 | sources -= [ |
thestig | c4cac8f | 2014-09-04 21:17:50 | [diff] [blame] | 502 | "pepper_file_util.cc", |
| 503 | "pepper_file_util.h", |
[email protected] | 7e4c3314 | 2014-05-21 22:01:32 | [diff] [blame] | 504 | "pepper_plugin_list.cc", |
| 505 | "pepper_plugin_list.h", |
thestig | c4cac8f | 2014-09-04 21:17:50 | [diff] [blame] | 506 | "pepper_renderer_instance_data.cc", |
| 507 | "pepper_renderer_instance_data.h", |
| 508 | "plugin_list.cc", |
| 509 | "plugin_list.h", |
[email protected] | 7e4c3314 | 2014-05-21 22:01:32 | [diff] [blame] | 510 | ] |
| 511 | } |
| 512 | |
[email protected] | 7e4c3314 | 2014-05-21 22:01:32 | [diff] [blame] | 513 | if (!is_win || !use_aura) { |
| 514 | sources -= [ "cursors/webcursor_aurawin.cc" ] |
| 515 | } |
[email protected] | 7e4c3314 | 2014-05-21 22:01:32 | [diff] [blame] | 516 | |
rsesek | 7b1273af0 | 2016-12-06 20:55:47 | [diff] [blame] | 517 | if (!use_seccomp_bpf) { |
[email protected] | 7e4c3314 | 2014-05-21 22:01:32 | [diff] [blame] | 518 | if (is_linux) { |
| 519 | sources -= [ |
| 520 | "sandbox_linux/bpf_cros_arm_gpu_policy_linux.cc", |
| 521 | "sandbox_linux/bpf_cros_arm_gpu_policy_linux.h", |
| 522 | "sandbox_linux/bpf_gpu_policy_linux.cc", |
| 523 | "sandbox_linux/bpf_gpu_policy_linux.h", |
| 524 | "sandbox_linux/bpf_ppapi_policy_linux.cc", |
| 525 | "sandbox_linux/bpf_ppapi_policy_linux.h", |
| 526 | "sandbox_linux/bpf_renderer_policy_linux.cc", |
| 527 | "sandbox_linux/bpf_renderer_policy_linux.h", |
[email protected] | 692a954 | 2014-06-25 23:04:47 | [diff] [blame] | 528 | "sandbox_linux/bpf_utility_policy_linux.cc", |
| 529 | "sandbox_linux/bpf_utility_policy_linux.h", |
[email protected] | 7e4c3314 | 2014-05-21 22:01:32 | [diff] [blame] | 530 | "sandbox_linux/sandbox_bpf_base_policy_linux.cc", |
| 531 | "sandbox_linux/sandbox_bpf_base_policy_linux.h", |
| 532 | ] |
| 533 | } |
| 534 | if (is_android) { |
| 535 | sources -= [ |
| 536 | "sandbox_linux/android/sandbox_bpf_base_policy_android.cc", |
| 537 | "sandbox_linux/android/sandbox_bpf_base_policy_android.h", |
| 538 | ] |
| 539 | } |
| 540 | } |
ochang | dd89a1e | 2016-06-08 16:39:01 | [diff] [blame] | 541 | |
brettw | 26c6ab45 | 2016-06-23 00:41:09 | [diff] [blame] | 542 | if (is_mac) { |
| 543 | deps += [ "//media/gpu" ] |
| 544 | } |
| 545 | |
ochang | dd89a1e | 2016-06-08 16:39:01 | [diff] [blame] | 546 | if (enable_ipc_fuzzer) { |
| 547 | configs += [ "//tools/ipc_fuzzer:ipc_fuzzer_config" ] |
| 548 | sources += [ |
| 549 | "external_ipc_dumper.cc", |
| 550 | "external_ipc_dumper.h", |
| 551 | ] |
| 552 | } |
xhwang | 785a834 | 2017-01-26 06:46:39 | [diff] [blame] | 553 | |
xhwang | c394103 | 2017-03-20 18:50:35 | [diff] [blame] | 554 | if (enable_cdm_host_verification) { |
xhwang | 785a834 | 2017-01-26 06:46:39 | [diff] [blame] | 555 | sources += [ |
| 556 | "media/cdm_host_file.cc", |
| 557 | "media/cdm_host_file.h", |
| 558 | "media/cdm_host_files.cc", |
| 559 | "media/cdm_host_files.h", |
| 560 | ] |
| 561 | deps += [ |
| 562 | "//media:cdm_paths", |
| 563 | |
| 564 | # Needed for finding CDM path from CDM adapter path. |
| 565 | # TODO(xhwang): Remove this dependency when CDM adapter is deprecated. |
| 566 | # See http://crbug.com/403462 |
| 567 | "//third_party/widevine/cdm:headers", |
| 568 | ] |
| 569 | } |
[email protected] | df3ecfde | 2014-05-20 21:52:34 | [diff] [blame] | 570 | } |
[email protected] | 7e4c3314 | 2014-05-21 22:01:32 | [diff] [blame] | 571 | |
brettw | b78fc9e | 2016-03-25 21:02:51 | [diff] [blame] | 572 | # See comment at the top of //content/BUILD.gn for how this works. |
| 573 | group("for_content_tests") { |
| 574 | visibility = [ "//content/test/*" ] |
| 575 | if (!is_component_build) { |
| 576 | public_deps = [ |
| 577 | ":common", |
| 578 | ] |
| 579 | } |
| 580 | } |
| 581 | |
[email protected] | 189add5 | 2014-05-28 16:51:44 | [diff] [blame] | 582 | mojom("mojo_bindings") { |
jam | b97b473d | 2016-08-08 20:48:29 | [diff] [blame] | 583 | # This interface is internal to content. |
brettw | b78fc9e | 2016-03-25 21:02:51 | [diff] [blame] | 584 | visibility = [ "//content/*" ] |
| 585 | |
reillyg | 627e7f7 | 2016-10-20 05:12:43 | [diff] [blame] | 586 | # indexed_db.mojom uses a native typemap that is not available in Java. |
| 587 | cpp_only = true |
| 588 | |
[email protected] | 189add5 | 2014-05-28 16:51:44 | [diff] [blame] | 589 | sources = [ |
rockot | f62002a | 2016-09-15 00:08:59 | [diff] [blame] | 590 | "associated_interfaces.mojom", |
bashi | a626404 | 2016-09-15 04:49:51 | [diff] [blame] | 591 | "child_memory_coordinator.mojom", |
chiniforooshan | 614d70a | 2017-03-17 01:19:33 | [diff] [blame] | 592 | "field_trial_recorder.mojom", |
ben | 76f52b24 | 2016-06-18 05:42:48 | [diff] [blame] | 593 | "frame.mojom", |
scottmg | 276753cf | 2016-10-27 18:25:22 | [diff] [blame] | 594 | "host_zoom.mojom", |
halton.huo | ca2eabd | 2015-07-06 08:17:40 | [diff] [blame] | 595 | "image_downloader/image_downloader.mojom", |
reillyg | 627e7f7 | 2016-10-20 05:12:43 | [diff] [blame] | 596 | "indexed_db/indexed_db.mojom", |
jam | c912ca3 | 2016-02-24 20:17:31 | [diff] [blame] | 597 | "leveldb_wrapper.mojom", |
guidou | 9357cc5 | 2016-10-11 19:53:36 | [diff] [blame] | 598 | "media/media_devices.mojom", |
bashi | a626404 | 2016-09-15 04:49:51 | [diff] [blame] | 599 | "memory_coordinator.mojom", |
rockot | 067ca55f | 2016-09-30 22:00:15 | [diff] [blame] | 600 | "native_types.mojom", |
ke.he | 5f426e32 | 2017-02-22 12:37:12 | [diff] [blame] | 601 | "push_messaging.mojom", |
rockot | 1587e33 | 2016-07-27 17:44:14 | [diff] [blame] | 602 | "render_frame_message_filter.mojom", |
rockot | e261d211 | 2016-09-21 22:22:23 | [diff] [blame] | 603 | "render_message_filter.mojom", |
fsamuel | 6c6da023 | 2015-11-26 05:13:46 | [diff] [blame] | 604 | "render_widget_window_tree_client_factory.mojom", |
rockot | 067ca55f | 2016-09-30 22:00:15 | [diff] [blame] | 605 | "renderer.mojom", |
shimazu | 5de409e4 | 2016-09-29 08:45:28 | [diff] [blame] | 606 | "service_worker/embedded_worker.mojom", |
shimazu | 804b3e4 | 2016-10-17 09:13:29 | [diff] [blame] | 607 | "service_worker/service_worker.mojom", |
shimazu | 317dd7b | 2016-11-25 04:55:51 | [diff] [blame] | 608 | "service_worker/service_worker_event_dispatcher.mojom", |
shimazu | 3b85dfb | 2017-02-21 13:03:30 | [diff] [blame] | 609 | "service_worker/service_worker_provider.mojom", |
shimazu | 804b3e4 | 2016-10-17 09:13:29 | [diff] [blame] | 610 | "service_worker/service_worker_types.mojom", |
jam | c912ca3 | 2016-02-24 20:17:31 | [diff] [blame] | 611 | "storage_partition_service.mojom", |
yhirano | 72f6227 | 2016-08-13 12:50:06 | [diff] [blame] | 612 | "url_loader.mojom", |
| 613 | "url_loader_factory.mojom", |
mcasas | 796b2e6c | 2016-10-06 01:48:14 | [diff] [blame] | 614 | "video_capture.mojom", |
[email protected] | 189add5 | 2014-05-28 16:51:44 | [diff] [blame] | 615 | ] |
[email protected] | e205123 | 2014-06-30 17:45:45 | [diff] [blame] | 616 | |
rockot | b814a58 | 2015-06-05 00:30:52 | [diff] [blame] | 617 | import_dirs = [ "//mojo/services" ] |
| 618 | |
rockot | 0506ca8 | 2016-02-05 18:13:05 | [diff] [blame] | 619 | public_deps = [ |
jam | c912ca3 | 2016-02-24 20:17:31 | [diff] [blame] | 620 | "//components/leveldb/public/interfaces", |
rouslan | bb7522e | 2017-03-28 17:06:19 | [diff] [blame] | 621 | "//components/payments/content:mojom_payment_app", |
rockot | 5c478a7 | 2016-09-28 23:14:18 | [diff] [blame] | 622 | "//content/public/common:interfaces", |
mcasas | 32a8820 | 2016-10-11 02:02:52 | [diff] [blame] | 623 | |
| 624 | # TODO(mcasas): remove the following dep after https://crbug.com/653994 |
| 625 | "//gpu/ipc/common:interfaces", |
rockot | 067ca55f | 2016-09-30 22:00:15 | [diff] [blame] | 626 | "//ipc:mojom", |
chfremer | b689c2a | 2016-10-27 23:04:46 | [diff] [blame] | 627 | "//media/capture/mojo:capture_types", |
mcasas | 2ff39f62 | 2016-10-11 20:00:46 | [diff] [blame] | 628 | "//media/mojo/interfaces", |
horo | 011e3a5a | 2016-10-11 11:59:11 | [diff] [blame] | 629 | "//mojo/common:common_custom_types", |
rockot | 734fb66 | 2016-10-15 16:41:30 | [diff] [blame] | 630 | "//services/service_manager/public/interfaces", |
ben | 6b0453d1 | 2016-07-02 04:27:19 | [diff] [blame] | 631 | "//services/ui/public/interfaces", |
mcasas | c3b336b | 2016-10-07 14:55:45 | [diff] [blame] | 632 | "//services/video_capture/public/interfaces", |
halton.huo | ca2eabd | 2015-07-06 08:17:40 | [diff] [blame] | 633 | "//skia/public/interfaces", |
ortuno | b160cb7 | 2016-03-16 20:44:30 | [diff] [blame] | 634 | "//third_party/WebKit/public:mojo_bindings", |
rockot | 5c478a7 | 2016-09-28 23:14:18 | [diff] [blame] | 635 | "//ui/base/mojo:mojo_bindings", |
sammc | 813a8eb3 | 2016-05-28 03:34:07 | [diff] [blame] | 636 | "//ui/gfx/geometry/mojo", |
rockot | 067ca55f | 2016-09-30 22:00:15 | [diff] [blame] | 637 | "//ui/gfx/mojo", |
sammc | f6f4fcf | 2016-06-21 05:39:39 | [diff] [blame] | 638 | "//url/mojo:url_mojom_gurl", |
sammc | a1107b7 | 2016-03-23 18:51:58 | [diff] [blame] | 639 | "//url/mojo:url_mojom_origin", |
[email protected] | e205123 | 2014-06-30 17:45:45 | [diff] [blame] | 640 | ] |
yzshen | 4e4d53c | 2016-07-19 06:56:42 | [diff] [blame] | 641 | |
rockot | a628d0b | 2017-02-09 08:40:15 | [diff] [blame] | 642 | overridden_deps = [ "//ipc:mojom" ] |
| 643 | component_deps = [ "//ipc" ] |
| 644 | |
jam | b97b473d | 2016-08-08 20:48:29 | [diff] [blame] | 645 | export_class_attribute = "CONTENT_EXPORT" |
| 646 | export_define = "CONTENT_IMPLEMENTATION=1" |
| 647 | export_header = "content/common/content_export.h" |
[email protected] | 189add5 | 2014-05-28 16:51:44 | [diff] [blame] | 648 | } |