| 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 533 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 544 ":common", | 544 ":common", |
| 545 ] | 545 ] |
| 546 } | 546 } |
| 547 } | 547 } |
| 548 | 548 |
| 549 mojom("mojo_bindings") { | 549 mojom("mojo_bindings") { |
| 550 # This interface is internal to content. | 550 # This interface is internal to content. |
| 551 visibility = [ "//content/*" ] | 551 visibility = [ "//content/*" ] |
| 552 | 552 |
| 553 sources = [ | 553 sources = [ |
| 554 "//content/public/common/screen_orientation.mojom", |
| 554 "associated_interfaces.mojom", | 555 "associated_interfaces.mojom", |
| 555 "child_memory_coordinator.mojom", | 556 "child_memory_coordinator.mojom", |
| 556 "frame.mojom", | 557 "frame.mojom", |
| 557 "image_downloader/image_downloader.mojom", | 558 "image_downloader/image_downloader.mojom", |
| 558 "leveldb_wrapper.mojom", | 559 "leveldb_wrapper.mojom", |
| 559 "media/media_devices.mojom", | 560 "media/media_devices.mojom", |
| 560 "memory_coordinator.mojom", | 561 "memory_coordinator.mojom", |
| 561 "native_types.mojom", | 562 "native_types.mojom", |
| 562 "render_frame_message_filter.mojom", | 563 "render_frame_message_filter.mojom", |
| 563 "render_message_filter.mojom", | 564 "render_message_filter.mojom", |
| 564 "render_widget_window_tree_client_factory.mojom", | 565 "render_widget_window_tree_client_factory.mojom", |
| 565 "renderer.mojom", | 566 "renderer.mojom", |
| 567 "screen_orientation_service.mojom", |
| 566 "service_worker/embedded_worker.mojom", | 568 "service_worker/embedded_worker.mojom", |
| 567 "service_worker/embedded_worker_setup.mojom", | 569 "service_worker/embedded_worker_setup.mojom", |
| 568 "service_worker/fetch_event_dispatcher.mojom", | 570 "service_worker/fetch_event_dispatcher.mojom", |
| 569 "storage_partition_service.mojom", | 571 "storage_partition_service.mojom", |
| 570 "url_loader.mojom", | 572 "url_loader.mojom", |
| 571 "url_loader_factory.mojom", | 573 "url_loader_factory.mojom", |
| 572 "video_capture.mojom", | 574 "video_capture.mojom", |
| 573 ] | 575 ] |
| 574 | 576 |
| 575 import_dirs = [ "//mojo/services" ] | 577 import_dirs = [ "//mojo/services" ] |
| (...skipping 18 matching lines...) Expand all Loading... |
| 594 "//ui/gfx/geometry/mojo", | 596 "//ui/gfx/geometry/mojo", |
| 595 "//ui/gfx/mojo", | 597 "//ui/gfx/mojo", |
| 596 "//url/mojo:url_mojom_gurl", | 598 "//url/mojo:url_mojom_gurl", |
| 597 "//url/mojo:url_mojom_origin", | 599 "//url/mojo:url_mojom_origin", |
| 598 ] | 600 ] |
| 599 | 601 |
| 600 export_class_attribute = "CONTENT_EXPORT" | 602 export_class_attribute = "CONTENT_EXPORT" |
| 601 export_define = "CONTENT_IMPLEMENTATION=1" | 603 export_define = "CONTENT_IMPLEMENTATION=1" |
| 602 export_header = "content/common/content_export.h" | 604 export_header = "content/common/content_export.h" |
| 603 } | 605 } |
| OLD | NEW |