OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 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 import("//build/config/features.gni") | 5 import("//build/config/features.gni") |
6 import("//extensions/extensions.gni") | |
7 | 6 |
8 # GYP version: extensions/extensions.gyp:extensions_browser | |
9 source_set("browser") { | 7 source_set("browser") { |
10 sources = [] | 8 sources = [] |
11 | 9 |
12 deps = [ | 10 deps = [ |
13 "//base:i18n", | 11 "//base:i18n", |
14 "//components/cast_certificate", | 12 "//components/cast_certificate", |
15 "//components/guest_view/browser", | 13 "//components/guest_view/browser", |
16 "//components/keyed_service/content", | 14 "//components/keyed_service/content", |
17 "//components/keyed_service/core", | 15 "//components/keyed_service/core", |
18 "//components/pref_registry", | 16 "//components/pref_registry", |
(...skipping 22 matching lines...) Expand all Loading... |
41 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 39 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
42 "//build/config/compiler:no_size_t_to_int_warning", | 40 "//build/config/compiler:no_size_t_to_int_warning", |
43 ] | 41 ] |
44 | 42 |
45 if (enable_extensions) { | 43 if (enable_extensions) { |
46 # Includes all API implementations and the ExtensionsApiClient | 44 # Includes all API implementations and the ExtensionsApiClient |
47 # interface. Moving an API from src/chrome to src/extensions implies | 45 # interface. Moving an API from src/chrome to src/extensions implies |
48 # it can be cleanly disabled with enable_extensions=false. | 46 # it can be cleanly disabled with enable_extensions=false. |
49 # TODO: Eventually the entire extensions module should not be built | 47 # TODO: Eventually the entire extensions module should not be built |
50 # when enable_extensions=false. | 48 # when enable_extensions=false. |
51 sources = rebase_path(extensions_gypi_values.extensions_browser_sources, | 49 sources = [ |
52 ".", | 50 # NOTE: When moving an API out of Chrome be sure to verify that the |
53 "//extensions") | 51 # Android build still compiles. See conditions below. |
| 52 "api/activity_log/web_request_constants.cc", |
| 53 "api/activity_log/web_request_constants.h", |
| 54 "api/alarms/alarm_manager.cc", |
| 55 "api/alarms/alarm_manager.h", |
| 56 "api/alarms/alarms_api.cc", |
| 57 "api/alarms/alarms_api.h", |
| 58 "api/alarms/alarms_api_constants.cc", |
| 59 "api/alarms/alarms_api_constants.h", |
| 60 "api/api_resource.cc", |
| 61 "api/api_resource.h", |
| 62 "api/api_resource_manager.h", |
| 63 "api/app_current_window_internal/app_current_window_internal_api.cc", |
| 64 "api/app_current_window_internal/app_current_window_internal_api.h", |
| 65 "api/app_runtime/app_runtime_api.cc", |
| 66 "api/app_runtime/app_runtime_api.h", |
| 67 "api/app_window/app_window_api.cc", |
| 68 "api/app_window/app_window_api.h", |
| 69 "api/async_api_function.cc", |
| 70 "api/async_api_function.h", |
| 71 "api/audio/audio_api.cc", |
| 72 "api/audio/audio_api.h", |
| 73 "api/audio/audio_service.h", |
| 74 "api/bluetooth/bluetooth_api.cc", |
| 75 "api/bluetooth/bluetooth_api.h", |
| 76 "api/bluetooth/bluetooth_api_pairing_delegate.cc", |
| 77 "api/bluetooth/bluetooth_api_pairing_delegate.h", |
| 78 "api/bluetooth/bluetooth_api_utils.cc", |
| 79 "api/bluetooth/bluetooth_api_utils.h", |
| 80 "api/bluetooth/bluetooth_event_router.cc", |
| 81 "api/bluetooth/bluetooth_event_router.h", |
| 82 "api/bluetooth/bluetooth_extension_function.cc", |
| 83 "api/bluetooth/bluetooth_extension_function.h", |
| 84 "api/bluetooth/bluetooth_private_api.cc", |
| 85 "api/bluetooth/bluetooth_private_api.h", |
| 86 "api/bluetooth_socket/bluetooth_api_socket.cc", |
| 87 "api/bluetooth_socket/bluetooth_api_socket.h", |
| 88 "api/bluetooth_socket/bluetooth_socket_api.cc", |
| 89 "api/bluetooth_socket/bluetooth_socket_api.h", |
| 90 "api/bluetooth_socket/bluetooth_socket_event_dispatcher.cc", |
| 91 "api/bluetooth_socket/bluetooth_socket_event_dispatcher.h", |
| 92 "api/cast_channel/cast_auth_util.cc", |
| 93 "api/cast_channel/cast_auth_util.h", |
| 94 "api/cast_channel/cast_channel_api.cc", |
| 95 "api/cast_channel/cast_channel_api.h", |
| 96 "api/cast_channel/cast_framer.cc", |
| 97 "api/cast_channel/cast_framer.h", |
| 98 "api/cast_channel/cast_message_util.cc", |
| 99 "api/cast_channel/cast_message_util.h", |
| 100 "api/cast_channel/cast_socket.cc", |
| 101 "api/cast_channel/cast_socket.h", |
| 102 "api/cast_channel/cast_transport.cc", |
| 103 "api/cast_channel/cast_transport.h", |
| 104 "api/cast_channel/keep_alive_delegate.cc", |
| 105 "api/cast_channel/keep_alive_delegate.h", |
| 106 "api/cast_channel/logger.cc", |
| 107 "api/cast_channel/logger.h", |
| 108 "api/cast_channel/logger_util.cc", |
| 109 "api/cast_channel/logger_util.h", |
| 110 "api/clipboard/clipboard_api.cc", |
| 111 "api/clipboard/clipboard_api.h", |
| 112 "api/declarative/declarative_api.cc", |
| 113 "api/declarative/declarative_api.h", |
| 114 "api/declarative/declarative_rule.h", |
| 115 "api/declarative/deduping_factory.h", |
| 116 "api/declarative/rules_cache_delegate.cc", |
| 117 "api/declarative/rules_cache_delegate.h", |
| 118 "api/declarative/rules_registry.cc", |
| 119 "api/declarative/rules_registry.h", |
| 120 "api/declarative/rules_registry_service.cc", |
| 121 "api/declarative/rules_registry_service.h", |
| 122 "api/declarative/test_rules_registry.cc", |
| 123 "api/declarative/test_rules_registry.h", |
| 124 "api/declarative_content/content_rules_registry.h", |
| 125 "api/declarative_webrequest/request_stage.cc", |
| 126 "api/declarative_webrequest/request_stage.h", |
| 127 "api/declarative_webrequest/webrequest_action.cc", |
| 128 "api/declarative_webrequest/webrequest_action.h", |
| 129 "api/declarative_webrequest/webrequest_condition.cc", |
| 130 "api/declarative_webrequest/webrequest_condition.h", |
| 131 "api/declarative_webrequest/webrequest_condition_attribute.cc", |
| 132 "api/declarative_webrequest/webrequest_condition_attribute.h", |
| 133 "api/declarative_webrequest/webrequest_constants.cc", |
| 134 "api/declarative_webrequest/webrequest_constants.h", |
| 135 "api/declarative_webrequest/webrequest_rules_registry.cc", |
| 136 "api/declarative_webrequest/webrequest_rules_registry.h", |
| 137 "api/device_permissions_manager.cc", |
| 138 "api/device_permissions_manager.h", |
| 139 "api/device_permissions_prompt.cc", |
| 140 "api/device_permissions_prompt.h", |
| 141 "api/display_source/display_source_api.cc", |
| 142 "api/display_source/display_source_api.h", |
| 143 "api/display_source/display_source_connection_delegate.cc", |
| 144 "api/display_source/display_source_connection_delegate.h", |
| 145 "api/display_source/display_source_connection_delegate_factory.cc", |
| 146 "api/display_source/display_source_connection_delegate_factory.h", |
| 147 "api/display_source/display_source_event_router.cc", |
| 148 "api/display_source/display_source_event_router.h", |
| 149 "api/display_source/display_source_event_router_factory.cc", |
| 150 "api/display_source/display_source_event_router_factory.h", |
| 151 "api/dns/dns_api.cc", |
| 152 "api/dns/dns_api.h", |
| 153 "api/dns/host_resolver_wrapper.cc", |
| 154 "api/dns/host_resolver_wrapper.h", |
| 155 "api/document_scan/document_scan_api.cc", |
| 156 "api/document_scan/document_scan_api.h", |
| 157 "api/document_scan/document_scan_interface.cc", |
| 158 "api/document_scan/document_scan_interface.h", |
| 159 "api/document_scan/document_scan_interface_chromeos.cc", |
| 160 "api/execute_code_function.cc", |
| 161 "api/execute_code_function.h", |
| 162 "api/extensions_api_client.cc", |
| 163 "api/extensions_api_client.h", |
| 164 "api/guest_view/app_view/app_view_guest_internal_api.cc", |
| 165 "api/guest_view/app_view/app_view_guest_internal_api.h", |
| 166 "api/guest_view/extension_view/extension_view_internal_api.cc", |
| 167 "api/guest_view/extension_view/extension_view_internal_api.h", |
| 168 "api/guest_view/guest_view_internal_api.cc", |
| 169 "api/guest_view/guest_view_internal_api.h", |
| 170 "api/guest_view/web_view/web_view_internal_api.cc", |
| 171 "api/guest_view/web_view/web_view_internal_api.h", |
| 172 "api/hid/hid_api.cc", |
| 173 "api/hid/hid_api.h", |
| 174 "api/hid/hid_connection_resource.cc", |
| 175 "api/hid/hid_connection_resource.h", |
| 176 "api/hid/hid_device_manager.cc", |
| 177 "api/hid/hid_device_manager.h", |
| 178 "api/idle/idle_api.cc", |
| 179 "api/idle/idle_api.h", |
| 180 "api/idle/idle_api_constants.cc", |
| 181 "api/idle/idle_api_constants.h", |
| 182 "api/idle/idle_manager.cc", |
| 183 "api/idle/idle_manager.h", |
| 184 "api/idle/idle_manager_factory.cc", |
| 185 "api/idle/idle_manager_factory.h", |
| 186 "api/management/management_api.cc", |
| 187 "api/management/management_api.h", |
| 188 "api/management/management_api_constants.cc", |
| 189 "api/management/management_api_constants.h", |
| 190 "api/management/management_api_delegate.h", |
| 191 "api/messaging/native_message_host.cc", |
| 192 "api/mime_handler_private/mime_handler_private.cc", |
| 193 "api/mime_handler_private/mime_handler_private.h", |
| 194 "api/networking_private/networking_private_api.cc", |
| 195 "api/networking_private/networking_private_api.h", |
| 196 "api/networking_private/networking_private_chromeos.cc", |
| 197 "api/networking_private/networking_private_chromeos.h", |
| 198 "api/networking_private/networking_private_delegate.cc", |
| 199 "api/networking_private/networking_private_delegate.h", |
| 200 "api/networking_private/networking_private_delegate_factory.cc", |
| 201 "api/networking_private/networking_private_delegate_factory.h", |
| 202 "api/networking_private/networking_private_delegate_observer.h", |
| 203 "api/networking_private/networking_private_event_router.h", |
| 204 "api/networking_private/networking_private_event_router_chromeos.cc", |
| 205 "api/networking_private/networking_private_event_router_factory.cc", |
| 206 "api/networking_private/networking_private_event_router_factory.h", |
| 207 "api/power/power_api.cc", |
| 208 "api/power/power_api.h", |
| 209 "api/printer_provider/printer_provider_api.cc", |
| 210 "api/printer_provider/printer_provider_api.h", |
| 211 "api/printer_provider/printer_provider_api_factory.cc", |
| 212 "api/printer_provider/printer_provider_api_factory.h", |
| 213 "api/printer_provider/printer_provider_print_job.cc", |
| 214 "api/printer_provider/printer_provider_print_job.h", |
| 215 "api/printer_provider_internal/printer_provider_internal_api.cc", |
| 216 "api/printer_provider_internal/printer_provider_internal_api.h", |
| 217 "api/printer_provider_internal/printer_provider_internal_api_observer.h", |
| 218 "api/runtime/runtime_api.cc", |
| 219 "api/runtime/runtime_api.h", |
| 220 "api/runtime/runtime_api_delegate.cc", |
| 221 "api/runtime/runtime_api_delegate.h", |
| 222 "api/serial/serial_api.cc", |
| 223 "api/serial/serial_api.h", |
| 224 "api/serial/serial_connection.cc", |
| 225 "api/serial/serial_connection.h", |
| 226 "api/serial/serial_event_dispatcher.cc", |
| 227 "api/serial/serial_event_dispatcher.h", |
| 228 "api/serial/serial_service_factory.cc", |
| 229 "api/serial/serial_service_factory.h", |
| 230 "api/socket/socket.cc", |
| 231 "api/socket/socket.h", |
| 232 "api/socket/socket_api.cc", |
| 233 "api/socket/socket_api.h", |
| 234 "api/socket/tcp_socket.cc", |
| 235 "api/socket/tcp_socket.h", |
| 236 "api/socket/tls_socket.cc", |
| 237 "api/socket/tls_socket.h", |
| 238 "api/socket/udp_socket.cc", |
| 239 "api/socket/udp_socket.h", |
| 240 "api/sockets_tcp/sockets_tcp_api.cc", |
| 241 "api/sockets_tcp/sockets_tcp_api.h", |
| 242 "api/sockets_tcp/tcp_socket_event_dispatcher.cc", |
| 243 "api/sockets_tcp/tcp_socket_event_dispatcher.h", |
| 244 "api/sockets_tcp_server/sockets_tcp_server_api.cc", |
| 245 "api/sockets_tcp_server/sockets_tcp_server_api.h", |
| 246 "api/sockets_tcp_server/tcp_server_socket_event_dispatcher.cc", |
| 247 "api/sockets_tcp_server/tcp_server_socket_event_dispatcher.h", |
| 248 "api/sockets_udp/sockets_udp_api.cc", |
| 249 "api/sockets_udp/sockets_udp_api.h", |
| 250 "api/sockets_udp/udp_socket_event_dispatcher.cc", |
| 251 "api/sockets_udp/udp_socket_event_dispatcher.h", |
| 252 "api/storage/local_value_store_cache.cc", |
| 253 "api/storage/local_value_store_cache.h", |
| 254 "api/storage/settings_namespace.cc", |
| 255 "api/storage/settings_namespace.h", |
| 256 "api/storage/settings_observer.h", |
| 257 "api/storage/settings_storage_quota_enforcer.cc", |
| 258 "api/storage/settings_storage_quota_enforcer.h", |
| 259 "api/storage/storage_api.cc", |
| 260 "api/storage/storage_api.h", |
| 261 "api/storage/storage_frontend.cc", |
| 262 "api/storage/storage_frontend.h", |
| 263 "api/storage/value_store_cache.cc", |
| 264 "api/storage/value_store_cache.h", |
| 265 "api/storage/weak_unlimited_settings_storage.cc", |
| 266 "api/storage/weak_unlimited_settings_storage.h", |
| 267 "api/system_cpu/cpu_info_provider.cc", |
| 268 "api/system_cpu/cpu_info_provider.h", |
| 269 "api/system_cpu/cpu_info_provider_linux.cc", |
| 270 "api/system_cpu/cpu_info_provider_mac.cc", |
| 271 "api/system_cpu/cpu_info_provider_win.cc", |
| 272 "api/system_cpu/system_cpu_api.cc", |
| 273 "api/system_cpu/system_cpu_api.h", |
| 274 "api/system_display/display_info_provider.cc", |
| 275 "api/system_display/display_info_provider.h", |
| 276 "api/system_display/system_display_api.cc", |
| 277 "api/system_display/system_display_api.h", |
| 278 "api/system_info/system_info_api.cc", |
| 279 "api/system_info/system_info_api.h", |
| 280 "api/system_info/system_info_provider.cc", |
| 281 "api/system_info/system_info_provider.h", |
| 282 "api/system_memory/memory_info_provider.cc", |
| 283 "api/system_memory/memory_info_provider.h", |
| 284 "api/system_memory/system_memory_api.cc", |
| 285 "api/system_memory/system_memory_api.h", |
| 286 "api/system_network/system_network_api.cc", |
| 287 "api/system_network/system_network_api.h", |
| 288 "api/system_storage/storage_info_provider.cc", |
| 289 "api/system_storage/storage_info_provider.h", |
| 290 "api/system_storage/system_storage_api.cc", |
| 291 "api/system_storage/system_storage_api.h", |
| 292 "api/test/test_api.cc", |
| 293 "api/test/test_api.h", |
| 294 "api/usb/usb_api.cc", |
| 295 "api/usb/usb_api.h", |
| 296 "api/usb/usb_device_resource.cc", |
| 297 "api/usb/usb_device_resource.h", |
| 298 "api/usb/usb_event_router.cc", |
| 299 "api/usb/usb_event_router.h", |
| 300 "api/usb/usb_guid_map.cc", |
| 301 "api/usb/usb_guid_map.h", |
| 302 "api/virtual_keyboard_private/virtual_keyboard_delegate.h", |
| 303 "api/virtual_keyboard_private/virtual_keyboard_private_api.cc", |
| 304 "api/virtual_keyboard_private/virtual_keyboard_private_api.h", |
| 305 "api/web_contents_capture_client.cc", |
| 306 "api/web_contents_capture_client.h", |
| 307 "api/web_request/form_data_parser.cc", |
| 308 "api/web_request/form_data_parser.h", |
| 309 "api/web_request/upload_data_presenter.cc", |
| 310 "api/web_request/upload_data_presenter.h", |
| 311 "api/web_request/web_request_api.cc", |
| 312 "api/web_request/web_request_api.h", |
| 313 "api/web_request/web_request_api_constants.cc", |
| 314 "api/web_request/web_request_api_constants.h", |
| 315 "api/web_request/web_request_api_helpers.cc", |
| 316 "api/web_request/web_request_api_helpers.h", |
| 317 "api/web_request/web_request_event_details.cc", |
| 318 "api/web_request/web_request_event_details.h", |
| 319 "api/web_request/web_request_event_router_delegate.h", |
| 320 "api/web_request/web_request_permissions.cc", |
| 321 "api/web_request/web_request_permissions.h", |
| 322 "api/web_request/web_request_time_tracker.cc", |
| 323 "api/web_request/web_request_time_tracker.h", |
| 324 "api_activity_monitor.cc", |
| 325 "api_activity_monitor.h", |
| 326 "app_sorting.h", |
| 327 "app_window/app_delegate.h", |
| 328 "app_window/app_web_contents_helper.cc", |
| 329 "app_window/app_web_contents_helper.h", |
| 330 "app_window/app_window.cc", |
| 331 "app_window/app_window.h", |
| 332 "app_window/app_window_client.cc", |
| 333 "app_window/app_window_client.h", |
| 334 "app_window/app_window_contents.cc", |
| 335 "app_window/app_window_contents.h", |
| 336 "app_window/app_window_geometry_cache.cc", |
| 337 "app_window/app_window_geometry_cache.h", |
| 338 "app_window/app_window_registry.cc", |
| 339 "app_window/app_window_registry.h", |
| 340 "app_window/native_app_window.h", |
| 341 "app_window/size_constraints.cc", |
| 342 "app_window/size_constraints.h", |
| 343 "bad_message.cc", |
| 344 "bad_message.h", |
| 345 "blacklist_state.h", |
| 346 "blob_holder.cc", |
| 347 "blob_holder.h", |
| 348 "blocked_action_type.h", |
| 349 "browser_context_keyed_api_factory.h", |
| 350 "browser_context_keyed_service_factories.cc", |
| 351 "browser_context_keyed_service_factories.h", |
| 352 "component_extension_resource_manager.h", |
| 353 "computed_hashes.cc", |
| 354 "computed_hashes.h", |
| 355 "content_hash_fetcher.cc", |
| 356 "content_hash_fetcher.h", |
| 357 "content_hash_reader.cc", |
| 358 "content_hash_reader.h", |
| 359 "content_hash_tree.cc", |
| 360 "content_hash_tree.h", |
| 361 "content_verifier.cc", |
| 362 "content_verifier.h", |
| 363 "content_verifier_delegate.h", |
| 364 "content_verifier_io_data.cc", |
| 365 "content_verifier_io_data.h", |
| 366 "content_verify_job.cc", |
| 367 "content_verify_job.h", |
| 368 "crx_file_info.cc", |
| 369 "crx_file_info.h", |
| 370 "declarative_user_script_manager.cc", |
| 371 "declarative_user_script_manager.h", |
| 372 "declarative_user_script_manager_factory.cc", |
| 373 "declarative_user_script_manager_factory.h", |
| 374 "declarative_user_script_master.cc", |
| 375 "declarative_user_script_master.h", |
| 376 "deferred_start_render_host.h", |
| 377 "deferred_start_render_host_observer.h", |
| 378 "error_map.cc", |
| 379 "error_map.h", |
| 380 "event_listener_map.cc", |
| 381 "event_listener_map.h", |
| 382 "event_page_tracker.h", |
| 383 "event_router.cc", |
| 384 "event_router.h", |
| 385 "event_router_factory.cc", |
| 386 "event_router_factory.h", |
| 387 "extension_api_frame_id_map.cc", |
| 388 "extension_api_frame_id_map.h", |
| 389 "extension_dialog_auto_confirm.cc", |
| 390 "extension_dialog_auto_confirm.h", |
| 391 "extension_error.cc", |
| 392 "extension_error.h", |
| 393 "extension_function.cc", |
| 394 "extension_function.h", |
| 395 "extension_function_dispatcher.cc", |
| 396 "extension_function_dispatcher.h", |
| 397 "extension_function_registry.cc", |
| 398 "extension_function_registry.h", |
| 399 "extension_host.cc", |
| 400 "extension_host.h", |
| 401 "extension_host_delegate.h", |
| 402 "extension_host_observer.h", |
| 403 "extension_host_queue.h", |
| 404 "extension_icon_image.cc", |
| 405 "extension_icon_image.h", |
| 406 "extension_icon_placeholder.cc", |
| 407 "extension_icon_placeholder.h", |
| 408 "extension_message_filter.cc", |
| 409 "extension_message_filter.h", |
| 410 "extension_navigation_throttle.cc", |
| 411 "extension_navigation_throttle.h", |
| 412 "extension_pref_store.cc", |
| 413 "extension_pref_store.h", |
| 414 "extension_pref_value_map.cc", |
| 415 "extension_pref_value_map.h", |
| 416 "extension_pref_value_map_factory.cc", |
| 417 "extension_pref_value_map_factory.h", |
| 418 "extension_prefs.cc", |
| 419 "extension_prefs.h", |
| 420 "extension_prefs_factory.cc", |
| 421 "extension_prefs_factory.h", |
| 422 "extension_prefs_observer.h", |
| 423 "extension_prefs_scope.h", |
| 424 "extension_protocols.cc", |
| 425 "extension_protocols.h", |
| 426 "extension_registry.cc", |
| 427 "extension_registry.h", |
| 428 "extension_registry_factory.cc", |
| 429 "extension_registry_factory.h", |
| 430 "extension_registry_observer.h", |
| 431 "extension_request_limiting_throttle.cc", |
| 432 "extension_request_limiting_throttle.h", |
| 433 "extension_scoped_prefs.h", |
| 434 "extension_service_worker_message_filter.cc", |
| 435 "extension_service_worker_message_filter.h", |
| 436 "extension_system.cc", |
| 437 "extension_system.h", |
| 438 "extension_system_provider.cc", |
| 439 "extension_system_provider.h", |
| 440 "extension_throttle_entry.cc", |
| 441 "extension_throttle_entry.h", |
| 442 "extension_throttle_entry_interface.h", |
| 443 "extension_throttle_manager.cc", |
| 444 "extension_throttle_manager.h", |
| 445 "extension_user_script_loader.cc", |
| 446 "extension_user_script_loader.h", |
| 447 "extension_util.cc", |
| 448 "extension_util.h", |
| 449 "extension_web_contents_observer.cc", |
| 450 "extension_web_contents_observer.h", |
| 451 "extension_zoom_request_client.cc", |
| 452 "extension_zoom_request_client.h", |
| 453 "extensions_browser_client.cc", |
| 454 "extensions_browser_client.h", |
| 455 "external_install_info.cc", |
| 456 "external_install_info.h", |
| 457 "external_provider_interface.h", |
| 458 "file_highlighter.cc", |
| 459 "file_highlighter.h", |
| 460 "file_reader.cc", |
| 461 "file_reader.h", |
| 462 "granted_file_entry.cc", |
| 463 "granted_file_entry.h", |
| 464 "guest_view/app_view/app_view_constants.cc", |
| 465 "guest_view/app_view/app_view_constants.h", |
| 466 "guest_view/app_view/app_view_guest.cc", |
| 467 "guest_view/app_view/app_view_guest.h", |
| 468 "guest_view/app_view/app_view_guest_delegate.cc", |
| 469 "guest_view/app_view/app_view_guest_delegate.h", |
| 470 "guest_view/extension_options/extension_options_constants.cc", |
| 471 "guest_view/extension_options/extension_options_constants.h", |
| 472 "guest_view/extension_options/extension_options_guest.cc", |
| 473 "guest_view/extension_options/extension_options_guest.h", |
| 474 "guest_view/extension_options/extension_options_guest_delegate.cc", |
| 475 "guest_view/extension_options/extension_options_guest_delegate.h", |
| 476 "guest_view/extension_view/extension_view_constants.cc", |
| 477 "guest_view/extension_view/extension_view_constants.h", |
| 478 "guest_view/extension_view/extension_view_guest.cc", |
| 479 "guest_view/extension_view/extension_view_guest.h", |
| 480 "guest_view/extension_view/whitelist/extension_view_whitelist.cc", |
| 481 "guest_view/extension_view/whitelist/extension_view_whitelist.h", |
| 482 "guest_view/extensions_guest_view_manager_delegate.cc", |
| 483 "guest_view/extensions_guest_view_manager_delegate.h", |
| 484 "guest_view/extensions_guest_view_message_filter.cc", |
| 485 "guest_view/extensions_guest_view_message_filter.h", |
| 486 "guest_view/guest_view_events.cc", |
| 487 "guest_view/guest_view_events.h", |
| 488 "guest_view/mime_handler_view/mime_handler_stream_manager.cc", |
| 489 "guest_view/mime_handler_view/mime_handler_stream_manager.h", |
| 490 "guest_view/mime_handler_view/mime_handler_view_constants.cc", |
| 491 "guest_view/mime_handler_view/mime_handler_view_constants.h", |
| 492 "guest_view/mime_handler_view/mime_handler_view_guest.cc", |
| 493 "guest_view/mime_handler_view/mime_handler_view_guest.h", |
| 494 "guest_view/mime_handler_view/mime_handler_view_guest_delegate.cc", |
| 495 "guest_view/mime_handler_view/mime_handler_view_guest_delegate.h", |
| 496 "guest_view/web_view/javascript_dialog_helper.cc", |
| 497 "guest_view/web_view/javascript_dialog_helper.h", |
| 498 "guest_view/web_view/web_ui/web_ui_url_fetcher.cc", |
| 499 "guest_view/web_view/web_ui/web_ui_url_fetcher.h", |
| 500 "guest_view/web_view/web_view_constants.cc", |
| 501 "guest_view/web_view/web_view_constants.h", |
| 502 "guest_view/web_view/web_view_content_script_manager.cc", |
| 503 "guest_view/web_view/web_view_content_script_manager.h", |
| 504 "guest_view/web_view/web_view_find_helper.cc", |
| 505 "guest_view/web_view/web_view_find_helper.h", |
| 506 "guest_view/web_view/web_view_guest.cc", |
| 507 "guest_view/web_view/web_view_guest.h", |
| 508 "guest_view/web_view/web_view_guest_delegate.h", |
| 509 "guest_view/web_view/web_view_permission_helper.cc", |
| 510 "guest_view/web_view/web_view_permission_helper.h", |
| 511 "guest_view/web_view/web_view_permission_helper_delegate.cc", |
| 512 "guest_view/web_view/web_view_permission_helper_delegate.h", |
| 513 "guest_view/web_view/web_view_permission_types.h", |
| 514 "guest_view/web_view/web_view_renderer_state.cc", |
| 515 "guest_view/web_view/web_view_renderer_state.h", |
| 516 "image_loader.cc", |
| 517 "image_loader.h", |
| 518 "image_loader_factory.cc", |
| 519 "image_loader_factory.h", |
| 520 "info_map.cc", |
| 521 "info_map.h", |
| 522 "install/crx_install_error.h", |
| 523 "install/extension_install_ui.cc", |
| 524 "install/extension_install_ui.h", |
| 525 "install_flag.h", |
| 526 "io_thread_extension_message_filter.cc", |
| 527 "io_thread_extension_message_filter.h", |
| 528 "lazy_background_task_queue.cc", |
| 529 "lazy_background_task_queue.h", |
| 530 "lazy_background_task_queue_factory.cc", |
| 531 "lazy_background_task_queue_factory.h", |
| 532 "load_monitoring_extension_host_queue.cc", |
| 533 "load_monitoring_extension_host_queue.h", |
| 534 "management_policy.cc", |
| 535 "management_policy.h", |
| 536 "mojo/keep_alive_impl.cc", |
| 537 "mojo/keep_alive_impl.h", |
| 538 "mojo/service_registration.cc", |
| 539 "mojo/service_registration.h", |
| 540 "mojo/stash_backend.cc", |
| 541 "mojo/stash_backend.h", |
| 542 "notification_types.cc", |
| 543 "notification_types.h", |
| 544 "null_app_sorting.cc", |
| 545 "null_app_sorting.h", |
| 546 "pref_names.cc", |
| 547 "pref_names.h", |
| 548 "process_manager.cc", |
| 549 "process_manager.h", |
| 550 "process_manager_delegate.h", |
| 551 "process_manager_factory.cc", |
| 552 "process_manager_factory.h", |
| 553 "process_manager_observer.h", |
| 554 "process_map.cc", |
| 555 "process_map.h", |
| 556 "process_map_factory.cc", |
| 557 "process_map_factory.h", |
| 558 "quota_service.cc", |
| 559 "quota_service.h", |
| 560 "renderer_startup_helper.cc", |
| 561 "renderer_startup_helper.h", |
| 562 "requirements_checker.h", |
| 563 "runtime_data.cc", |
| 564 "runtime_data.h", |
| 565 "sandboxed_unpacker.cc", |
| 566 "sandboxed_unpacker.h", |
| 567 "script_execution_observer.h", |
| 568 "script_executor.cc", |
| 569 "script_executor.h", |
| 570 "serial_extension_host_queue.cc", |
| 571 "serial_extension_host_queue.h", |
| 572 "service_worker_manager.cc", |
| 573 "service_worker_manager.h", |
| 574 "state_store.cc", |
| 575 "state_store.h", |
| 576 "suggest_permission_util.cc", |
| 577 "suggest_permission_util.h", |
| 578 "uninstall_ping_sender.cc", |
| 579 "uninstall_ping_sender.h", |
| 580 "uninstall_reason.h", |
| 581 "update_observer.h", |
| 582 "updater/extension_cache.h", |
| 583 "updater/extension_downloader.cc", |
| 584 "updater/extension_downloader.h", |
| 585 "updater/extension_downloader_delegate.cc", |
| 586 "updater/extension_downloader_delegate.h", |
| 587 "updater/extension_downloader_test_delegate.h", |
| 588 "updater/manifest_fetch_data.cc", |
| 589 "updater/manifest_fetch_data.h", |
| 590 "updater/null_extension_cache.cc", |
| 591 "updater/null_extension_cache.h", |
| 592 "updater/request_queue.h", |
| 593 "updater/request_queue_impl.h", |
| 594 "updater/safe_manifest_parser.cc", |
| 595 "updater/safe_manifest_parser.h", |
| 596 "updater/update_client_config.cc", |
| 597 "updater/update_client_config.h", |
| 598 "updater/update_data_provider.cc", |
| 599 "updater/update_data_provider.h", |
| 600 "updater/update_install_shim.cc", |
| 601 "updater/update_install_shim.h", |
| 602 "updater/update_service.cc", |
| 603 "updater/update_service.h", |
| 604 "updater/update_service_factory.cc", |
| 605 "updater/update_service_factory.h", |
| 606 "url_request_util.cc", |
| 607 "url_request_util.h", |
| 608 "user_script_loader.cc", |
| 609 "user_script_loader.h", |
| 610 "value_store/lazy_leveldb.cc", |
| 611 "value_store/lazy_leveldb.h", |
| 612 "value_store/legacy_value_store_factory.cc", |
| 613 "value_store/legacy_value_store_factory.h", |
| 614 "value_store/leveldb_scoped_database.cc", |
| 615 "value_store/leveldb_scoped_database.h", |
| 616 "value_store/leveldb_value_store.cc", |
| 617 "value_store/leveldb_value_store.h", |
| 618 "value_store/test_value_store_factory.cc", |
| 619 "value_store/test_value_store_factory.h", |
| 620 "value_store/testing_value_store.cc", |
| 621 "value_store/testing_value_store.h", |
| 622 "value_store/value_store.cc", |
| 623 "value_store/value_store.h", |
| 624 "value_store/value_store_change.cc", |
| 625 "value_store/value_store_change.h", |
| 626 "value_store/value_store_factory.h", |
| 627 "value_store/value_store_factory_impl.cc", |
| 628 "value_store/value_store_factory_impl.h", |
| 629 "value_store/value_store_frontend.cc", |
| 630 "value_store/value_store_frontend.h", |
| 631 "verified_contents.cc", |
| 632 "verified_contents.h", |
| 633 "view_type_utils.cc", |
| 634 "view_type_utils.h", |
| 635 "warning_service.cc", |
| 636 "warning_service.h", |
| 637 "warning_service_factory.cc", |
| 638 "warning_service_factory.h", |
| 639 "warning_set.cc", |
| 640 "warning_set.h", |
| 641 "web_ui_user_script_loader.cc", |
| 642 "web_ui_user_script_loader.h", |
| 643 ] |
54 | 644 |
55 deps += [ | 645 deps += [ |
56 "//components/browsing_data/content", | 646 "//components/browsing_data/content", |
57 "//components/onc", | 647 "//components/onc", |
58 "//components/storage_monitor", | 648 "//components/storage_monitor", |
59 "//components/update_client", | 649 "//components/update_client", |
60 "//components/variations", | 650 "//components/variations", |
61 "//crypto:platform", | 651 "//crypto:platform", |
62 "//device/bluetooth", | 652 "//device/bluetooth", |
63 "//device/core", | 653 "//device/core", |
64 "//device/hid", | 654 "//device/hid", |
65 "//device/power_save_blocker", | 655 "//device/power_save_blocker", |
66 "//device/serial", | 656 "//device/serial", |
67 "//device/usb", | 657 "//device/usb", |
68 "//extensions:extensions_browser_resources", | 658 "//extensions:extensions_browser_resources", |
69 "//extensions/common/api/cast_channel:cast_channel_proto", | 659 "//extensions/common/api/cast_channel:cast_channel_proto", |
70 ] | 660 ] |
71 | 661 |
72 if (is_chromeos) { | 662 if (is_chromeos) { |
73 deps += [ "//chromeos" ] | 663 deps += [ "//chromeos" ] |
74 } | 664 } |
75 | 665 |
76 if (is_chromeos) { | 666 if (is_chromeos) { |
77 chromeos_sources = rebase_path( | 667 sources += [ |
78 extensions_gypi_values.extensions_browser_sources_chromeos, | 668 "api/audio/audio_service_chromeos.cc", |
79 ".", | 669 "api/diagnostics/diagnostics_api.cc", |
80 "//extensions") | 670 "api/diagnostics/diagnostics_api.h", |
81 sources += chromeos_sources | 671 "api/diagnostics/diagnostics_api_chromeos.cc", |
| 672 "api/networking_config/networking_config_api.cc", |
| 673 "api/networking_config/networking_config_api.h", |
| 674 "api/networking_config/networking_config_service.cc", |
| 675 "api/networking_config/networking_config_service.h", |
| 676 "api/networking_config/networking_config_service_factory.cc", |
| 677 "api/networking_config/networking_config_service_factory.h", |
| 678 "api/socket/app_firewall_hole_manager.cc", |
| 679 "api/socket/app_firewall_hole_manager.h", |
| 680 "api/vpn_provider/vpn_provider_api.cc", |
| 681 "api/vpn_provider/vpn_provider_api.h", |
| 682 "api/vpn_provider/vpn_service.cc", |
| 683 "api/vpn_provider/vpn_service.h", |
| 684 "api/vpn_provider/vpn_service_factory.h", |
| 685 "api/webcam_private/v4l2_webcam.cc", |
| 686 "api/webcam_private/v4l2_webcam.h", |
| 687 "api/webcam_private/visca_webcam.cc", |
| 688 "api/webcam_private/visca_webcam.h", |
| 689 "api/webcam_private/webcam.cc", |
| 690 "api/webcam_private/webcam.h", |
| 691 "api/webcam_private/webcam_private_api.h", |
| 692 "api/webcam_private/webcam_private_api_chromeos.cc", |
| 693 ] |
82 } else { | 694 } else { |
83 nonchromeos_sources = rebase_path( | 695 sources += [ |
84 extensions_gypi_values.extensions_browser_sources_nonchromeos, | 696 "api/audio/audio_service.cc", |
85 ".", | 697 "api/document_scan/document_scan_interface_nonchromeos.cc", |
86 "//extensions") | 698 ] |
87 sources += nonchromeos_sources | |
88 | 699 |
89 if (is_linux) { | 700 if (is_linux) { |
90 if (use_dbus) { | 701 if (use_dbus) { |
91 deps += [ "//dbus" ] | 702 deps += [ "//dbus" ] |
92 } | 703 } |
93 linux_sources = rebase_path( | 704 sources += [ |
94 extensions_gypi_values.extensions_browser_sources_linux_nonchrom
eos, | 705 "api/networking_private/network_config_dbus_constants_linux.cc", |
95 ".", | 706 "api/networking_private/network_config_dbus_constants_linux.h", |
96 "//extensions") | 707 "api/networking_private/networking_private_event_router_nonchromeos.cc
", |
97 sources += linux_sources | 708 "api/networking_private/networking_private_linux.cc", |
| 709 "api/networking_private/networking_private_linux.h", |
| 710 ] |
98 } else { | 711 } else { |
99 if (is_win || is_mac) { | 712 if (is_win || is_mac) { |
| 713 sources += [ |
| 714 "api/networking_private/networking_private_event_router_nonchromeos.
cc", |
| 715 "api/networking_private/networking_private_service_client.cc", |
| 716 "api/networking_private/networking_private_service_client.h", |
| 717 ] |
100 deps += [ "//components/wifi" ] | 718 deps += [ "//components/wifi" ] |
101 | |
102 win_or_mac_sources = rebase_path( | |
103 extensions_gypi_values.extensions_browser_sources_win_or_mac, | |
104 ".", | |
105 "//extensions") | |
106 sources += win_or_mac_sources | |
107 } | 719 } |
108 } | 720 } |
109 if (proprietary_codecs && enable_wifi_display) { | 721 if (proprietary_codecs && enable_wifi_display) { |
110 wifi_display_sources = rebase_path( | 722 wifi_display_sources = [ |
111 extensions_gypi_values.extensions_browser_sources_wifi_display, | 723 "api/display_source/wifi_display/wifi_display_media_service_impl.cc", |
112 ".", | 724 "api/display_source/wifi_display/wifi_display_media_service_impl.h", |
113 "//extensions") | 725 "api/display_source/wifi_display/wifi_display_session_service_impl.cc"
, |
| 726 "api/display_source/wifi_display/wifi_display_session_service_impl.h", |
| 727 ] |
114 sources += wifi_display_sources | 728 sources += wifi_display_sources |
115 } | 729 } |
116 } | 730 } |
117 } | 731 } |
118 } | 732 } |
119 | 733 |
120 source_set("browser_tests") { | 734 source_set("browser_tests") { |
121 testonly = true | 735 testonly = true |
122 sources = [ | 736 sources = [ |
123 "api/audio/audio_apitest.cc", | 737 "api/audio/audio_apitest.cc", |
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
274 "//net:test_support", | 888 "//net:test_support", |
275 "//third_party/leveldatabase", | 889 "//third_party/leveldatabase", |
276 "//third_party/zlib:zip", | 890 "//third_party/zlib:zip", |
277 ] | 891 ] |
278 | 892 |
279 if (is_chromeos) { | 893 if (is_chromeos) { |
280 sources += [ "api/webcam_private/visca_webcam_unittest.cc" ] | 894 sources += [ "api/webcam_private/visca_webcam_unittest.cc" ] |
281 deps += [ "//chromeos:test_support" ] | 895 deps += [ "//chromeos:test_support" ] |
282 } | 896 } |
283 } | 897 } |
OLD | NEW |