Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(195)

Side by Side Diff: content/common/BUILD.gn

Issue 2310563002: Adds routed interface support between RenderFrameHost and RenderFrame (Closed)
Patch Set: nit Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « content/child/child_thread_impl.cc ('k') | content/common/associated_interface_provider_impl.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 26 matching lines...) Expand all
37 "android/media_metadata_android.h", 37 "android/media_metadata_android.h",
38 "android/resource_request_body_android.cc", 38 "android/resource_request_body_android.cc",
39 "android/resource_request_body_android.h", 39 "android/resource_request_body_android.h",
40 "android/sync_compositor_messages.cc", 40 "android/sync_compositor_messages.cc",
41 "android/sync_compositor_messages.h", 41 "android/sync_compositor_messages.h",
42 "android/sync_compositor_statics.cc", 42 "android/sync_compositor_statics.cc",
43 "android/sync_compositor_statics.h", 43 "android/sync_compositor_statics.h",
44 "appcache_interfaces.cc", 44 "appcache_interfaces.cc",
45 "appcache_interfaces.h", 45 "appcache_interfaces.h",
46 "appcache_messages.h", 46 "appcache_messages.h",
47 "associated_interface_provider_impl.cc",
48 "associated_interface_provider_impl.h",
49 "associated_interface_registry_impl.cc",
50 "associated_interface_registry_impl.h",
47 "ax_content_node_data.cc", 51 "ax_content_node_data.cc",
48 "ax_content_node_data.h", 52 "ax_content_node_data.h",
49 "bluetooth/web_bluetooth_device_id.cc", 53 "bluetooth/web_bluetooth_device_id.cc",
50 "bluetooth/web_bluetooth_device_id.h", 54 "bluetooth/web_bluetooth_device_id.h",
51 "browser_plugin/browser_plugin_constants.cc", 55 "browser_plugin/browser_plugin_constants.cc",
52 "browser_plugin/browser_plugin_constants.h", 56 "browser_plugin/browser_plugin_constants.h",
53 "browser_plugin/browser_plugin_messages.h", 57 "browser_plugin/browser_plugin_messages.h",
54 "cache_storage/cache_storage_messages.h", 58 "cache_storage/cache_storage_messages.h",
55 "cache_storage/cache_storage_types.cc", 59 "cache_storage/cache_storage_types.cc",
56 "cache_storage/cache_storage_types.h", 60 "cache_storage/cache_storage_types.h",
(...skipping 487 matching lines...) Expand 10 before | Expand all | Expand 10 after
544 ":common", 548 ":common",
545 ] 549 ]
546 } 550 }
547 } 551 }
548 552
549 mojom("mojo_bindings") { 553 mojom("mojo_bindings") {
550 # This interface is internal to content. 554 # This interface is internal to content.
551 visibility = [ "//content/*" ] 555 visibility = [ "//content/*" ]
552 556
553 sources = [ 557 sources = [
558 "associated_interfaces.mojom",
554 "frame.mojom", 559 "frame.mojom",
555 "image_downloader/image_downloader.mojom", 560 "image_downloader/image_downloader.mojom",
556 "leveldb_wrapper.mojom", 561 "leveldb_wrapper.mojom",
557 "render_frame_message_filter.mojom", 562 "render_frame_message_filter.mojom",
558 "render_widget_window_tree_client_factory.mojom", 563 "render_widget_window_tree_client_factory.mojom",
559 "service_worker/embedded_worker_setup.mojom", 564 "service_worker/embedded_worker_setup.mojom",
560 "storage_partition_service.mojom", 565 "storage_partition_service.mojom",
561 "url_loader.mojom", 566 "url_loader.mojom",
562 "url_loader_factory.mojom", 567 "url_loader_factory.mojom",
563 ] 568 ]
564 569
565 import_dirs = [ "//mojo/services" ] 570 import_dirs = [ "//mojo/services" ]
566 571
567 public_deps = [ 572 public_deps = [
568 "//components/leveldb/public/interfaces", 573 "//components/leveldb/public/interfaces",
569 "//device/sensors/public/interfaces", 574 "//device/sensors/public/interfaces",
570 "//services/shell/public/interfaces", 575 "//services/shell/public/interfaces",
571 "//services/ui/public/interfaces", 576 "//services/ui/public/interfaces",
572 "//skia/public/interfaces", 577 "//skia/public/interfaces",
573 "//third_party/WebKit/public:mojo_bindings", 578 "//third_party/WebKit/public:mojo_bindings",
574 "//ui/gfx/geometry/mojo", 579 "//ui/gfx/geometry/mojo",
575 "//url/mojo:url_mojom_gurl", 580 "//url/mojo:url_mojom_gurl",
576 "//url/mojo:url_mojom_origin", 581 "//url/mojo:url_mojom_origin",
577 ] 582 ]
578 583
579 export_class_attribute = "CONTENT_EXPORT" 584 export_class_attribute = "CONTENT_EXPORT"
580 export_define = "CONTENT_IMPLEMENTATION=1" 585 export_define = "CONTENT_IMPLEMENTATION=1"
581 export_header = "content/common/content_export.h" 586 export_header = "content/common/content_export.h"
582 } 587 }
OLDNEW
« no previous file with comments | « content/child/child_thread_impl.cc ('k') | content/common/associated_interface_provider_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698