| 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 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 200 "mac/font_loader.h", | 200 "mac/font_loader.h", |
| 201 "mac/font_loader.mm", | 201 "mac/font_loader.mm", |
| 202 "manifest_manager_messages.h", | 202 "manifest_manager_messages.h", |
| 203 "media/aec_dump_messages.h", | 203 "media/aec_dump_messages.h", |
| 204 "media/audio_messages.h", | 204 "media/audio_messages.h", |
| 205 "media/cdm_info.cc", | 205 "media/cdm_info.cc", |
| 206 "media/cdm_messages.h", | 206 "media/cdm_messages.h", |
| 207 "media/cdm_messages_enums.h", | 207 "media/cdm_messages_enums.h", |
| 208 "media/media_devices.cc", | 208 "media/media_devices.cc", |
| 209 "media/media_devices.h", | 209 "media/media_devices.h", |
| 210 "media/media_devices_param_traits.cc", |
| 211 "media/media_devices_param_traits.h", |
| 210 "media/media_metadata_sanitizer.cc", | 212 "media/media_metadata_sanitizer.cc", |
| 211 "media/media_metadata_sanitizer.h", | 213 "media/media_metadata_sanitizer.h", |
| 212 "media/media_player_delegate_messages.h", | 214 "media/media_player_delegate_messages.h", |
| 213 "media/media_player_messages_android.h", | 215 "media/media_player_messages_android.h", |
| 214 "media/media_session_messages_android.h", | 216 "media/media_session_messages_android.h", |
| 215 "media/media_stream_messages.h", | 217 "media/media_stream_messages.h", |
| 216 "media/media_stream_options.cc", | 218 "media/media_stream_options.cc", |
| 217 "media/media_stream_options.h", | 219 "media/media_stream_options.h", |
| 218 "media/media_stream_track_metrics_host_messages.h", | 220 "media/media_stream_track_metrics_host_messages.h", |
| 219 "media/midi_messages.h", | 221 "media/midi_messages.h", |
| (...skipping 333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 553 mojom("mojo_bindings") { | 555 mojom("mojo_bindings") { |
| 554 # This interface is internal to content. | 556 # This interface is internal to content. |
| 555 visibility = [ "//content/*" ] | 557 visibility = [ "//content/*" ] |
| 556 | 558 |
| 557 sources = [ | 559 sources = [ |
| 558 "associated_interfaces.mojom", | 560 "associated_interfaces.mojom", |
| 559 "child_memory_coordinator.mojom", | 561 "child_memory_coordinator.mojom", |
| 560 "frame.mojom", | 562 "frame.mojom", |
| 561 "image_downloader/image_downloader.mojom", | 563 "image_downloader/image_downloader.mojom", |
| 562 "leveldb_wrapper.mojom", | 564 "leveldb_wrapper.mojom", |
| 565 "media/media_devices.mojom", |
| 563 "memory_coordinator.mojom", | 566 "memory_coordinator.mojom", |
| 564 "render_frame_message_filter.mojom", | 567 "render_frame_message_filter.mojom", |
| 565 "render_message_filter.mojom", | 568 "render_message_filter.mojom", |
| 566 "render_widget_window_tree_client_factory.mojom", | 569 "render_widget_window_tree_client_factory.mojom", |
| 567 "service_worker/embedded_worker_setup.mojom", | 570 "service_worker/embedded_worker_setup.mojom", |
| 568 "storage_partition_service.mojom", | 571 "storage_partition_service.mojom", |
| 569 "url_loader.mojom", | 572 "url_loader.mojom", |
| 570 "url_loader_factory.mojom", | 573 "url_loader_factory.mojom", |
| 571 ] | 574 ] |
| 572 | 575 |
| (...skipping 11 matching lines...) Expand all Loading... |
| 584 "//ui/base/mojo:mojo_bindings", | 587 "//ui/base/mojo:mojo_bindings", |
| 585 "//ui/gfx/geometry/mojo", | 588 "//ui/gfx/geometry/mojo", |
| 586 "//url/mojo:url_mojom_gurl", | 589 "//url/mojo:url_mojom_gurl", |
| 587 "//url/mojo:url_mojom_origin", | 590 "//url/mojo:url_mojom_origin", |
| 588 ] | 591 ] |
| 589 | 592 |
| 590 export_class_attribute = "CONTENT_EXPORT" | 593 export_class_attribute = "CONTENT_EXPORT" |
| 591 export_define = "CONTENT_IMPLEMENTATION=1" | 594 export_define = "CONTENT_IMPLEMENTATION=1" |
| 592 export_header = "content/common/content_export.h" | 595 export_header = "content/common/content_export.h" |
| 593 } | 596 } |
| OLD | NEW |