| 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("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//media/media_options.gni") | 7 import("//media/media_options.gni") |
| 8 import("//mojo/public/tools/bindings/mojom.gni") | 8 import("//mojo/public/tools/bindings/mojom.gni") |
| 9 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") | 9 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") |
| 10 if (is_mac) { | 10 if (is_mac) { |
| (...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 196 "mac/font_loader.h", | 196 "mac/font_loader.h", |
| 197 "mac/font_loader.mm", | 197 "mac/font_loader.mm", |
| 198 "manifest_manager_messages.h", | 198 "manifest_manager_messages.h", |
| 199 "media/aec_dump_messages.h", | 199 "media/aec_dump_messages.h", |
| 200 "media/audio_messages.h", | 200 "media/audio_messages.h", |
| 201 "media/cdm_info.cc", | 201 "media/cdm_info.cc", |
| 202 "media/cdm_messages.h", | 202 "media/cdm_messages.h", |
| 203 "media/cdm_messages_enums.h", | 203 "media/cdm_messages_enums.h", |
| 204 "media/media_devices.cc", | 204 "media/media_devices.cc", |
| 205 "media/media_devices.h", | 205 "media/media_devices.h", |
| 206 "media/media_devices_param_traits.cc", |
| 207 "media/media_devices_param_traits.h", |
| 206 "media/media_player_delegate_messages.h", | 208 "media/media_player_delegate_messages.h", |
| 207 "media/media_player_messages_android.h", | 209 "media/media_player_messages_android.h", |
| 208 "media/media_stream_messages.h", | 210 "media/media_stream_messages.h", |
| 209 "media/media_stream_options.cc", | 211 "media/media_stream_options.cc", |
| 210 "media/media_stream_options.h", | 212 "media/media_stream_options.h", |
| 211 "media/media_stream_track_metrics_host_messages.h", | 213 "media/media_stream_track_metrics_host_messages.h", |
| 212 "media/midi_messages.h", | 214 "media/midi_messages.h", |
| 213 "media/surface_view_manager_messages_android.h", | 215 "media/surface_view_manager_messages_android.h", |
| 214 "media/video_capture.h", | 216 "media/video_capture.h", |
| 215 "media/video_capture_messages.h", | 217 "media/video_capture_messages.h", |
| (...skipping 330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 546 mojom("mojo_bindings") { | 548 mojom("mojo_bindings") { |
| 547 # This interface is internal to content. | 549 # This interface is internal to content. |
| 548 visibility = [ "//content/*" ] | 550 visibility = [ "//content/*" ] |
| 549 | 551 |
| 550 sources = [ | 552 sources = [ |
| 551 "associated_interfaces.mojom", | 553 "associated_interfaces.mojom", |
| 552 "child_memory_coordinator.mojom", | 554 "child_memory_coordinator.mojom", |
| 553 "frame.mojom", | 555 "frame.mojom", |
| 554 "image_downloader/image_downloader.mojom", | 556 "image_downloader/image_downloader.mojom", |
| 555 "leveldb_wrapper.mojom", | 557 "leveldb_wrapper.mojom", |
| 558 "media/media_devices.mojom", |
| 556 "memory_coordinator.mojom", | 559 "memory_coordinator.mojom", |
| 557 "native_types.mojom", | 560 "native_types.mojom", |
| 558 "render_frame_message_filter.mojom", | 561 "render_frame_message_filter.mojom", |
| 559 "render_message_filter.mojom", | 562 "render_message_filter.mojom", |
| 560 "render_widget_window_tree_client_factory.mojom", | 563 "render_widget_window_tree_client_factory.mojom", |
| 561 "renderer.mojom", | 564 "renderer.mojom", |
| 562 "service_worker/embedded_worker.mojom", | 565 "service_worker/embedded_worker.mojom", |
| 563 "service_worker/embedded_worker_setup.mojom", | 566 "service_worker/embedded_worker_setup.mojom", |
| 564 "service_worker/fetch_event_dispatcher.mojom", | 567 "service_worker/fetch_event_dispatcher.mojom", |
| 565 "storage_partition_service.mojom", | 568 "storage_partition_service.mojom", |
| (...skipping 23 matching lines...) Expand all Loading... |
| 589 "//ui/gfx/geometry/mojo", | 592 "//ui/gfx/geometry/mojo", |
| 590 "//ui/gfx/mojo", | 593 "//ui/gfx/mojo", |
| 591 "//url/mojo:url_mojom_gurl", | 594 "//url/mojo:url_mojom_gurl", |
| 592 "//url/mojo:url_mojom_origin", | 595 "//url/mojo:url_mojom_origin", |
| 593 ] | 596 ] |
| 594 | 597 |
| 595 export_class_attribute = "CONTENT_EXPORT" | 598 export_class_attribute = "CONTENT_EXPORT" |
| 596 export_define = "CONTENT_IMPLEMENTATION=1" | 599 export_define = "CONTENT_IMPLEMENTATION=1" |
| 597 export_header = "content/common/content_export.h" | 600 export_header = "content/common/content_export.h" |
| 598 } | 601 } |
| OLD | NEW |