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

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

Issue 2884243003: Add a mojo channel for frame messages. (Closed)
Patch Set: Use WeakPtr inside FrameInputHandlerImpl, add comments Created 3 years, 7 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
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("features.gni") 5 import("features.gni")
6 import("//build/buildflag_header.gni") 6 import("//build/buildflag_header.gni")
7 import("//build/config/features.gni") 7 import("//build/config/features.gni")
8 import("//build/config/ui.gni") 8 import("//build/config/ui.gni")
9 import("//media/media_options.gni") 9 import("//media/media_options.gni")
10 import("//mojo/public/tools/bindings/mojom.gni") 10 import("//mojo/public/tools/bindings/mojom.gni")
(...skipping 581 matching lines...) Expand 10 before | Expand all | Expand 10 after
592 sources = [ 592 sources = [
593 "associated_interfaces.mojom", 593 "associated_interfaces.mojom",
594 "child.mojom", 594 "child.mojom",
595 "child_memory_coordinator.mojom", 595 "child_memory_coordinator.mojom",
596 "field_trial_recorder.mojom", 596 "field_trial_recorder.mojom",
597 "frame.mojom", 597 "frame.mojom",
598 "frame_sink_provider.mojom", 598 "frame_sink_provider.mojom",
599 "host_zoom.mojom", 599 "host_zoom.mojom",
600 "image_downloader/image_downloader.mojom", 600 "image_downloader/image_downloader.mojom",
601 "indexed_db/indexed_db.mojom", 601 "indexed_db/indexed_db.mojom",
602 "input/input_handler.mojom",
602 "leveldb_wrapper.mojom", 603 "leveldb_wrapper.mojom",
603 "manifest_observer.mojom", 604 "manifest_observer.mojom",
604 "media/media_devices.mojom", 605 "media/media_devices.mojom",
605 "media/renderer_audio_output_stream_factory.mojom", 606 "media/renderer_audio_output_stream_factory.mojom",
606 "memory_coordinator.mojom", 607 "memory_coordinator.mojom",
607 "native_types.mojom", 608 "native_types.mojom",
608 "network_service.mojom", 609 "network_service.mojom",
609 "push_messaging.mojom", 610 "push_messaging.mojom",
610 "render_frame_message_filter.mojom", 611 "render_frame_message_filter.mojom",
611 "render_message_filter.mojom", 612 "render_message_filter.mojom",
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
643 "//ui/gfx/mojo", 644 "//ui/gfx/mojo",
644 "//url/mojo:url_mojom_gurl", 645 "//url/mojo:url_mojom_gurl",
645 "//url/mojo:url_mojom_origin", 646 "//url/mojo:url_mojom_origin",
646 ] 647 ]
647 648
648 component_output_prefix = "content_common_mojo_bindings" 649 component_output_prefix = "content_common_mojo_bindings"
649 export_class_attribute = "CONTENT_EXPORT" 650 export_class_attribute = "CONTENT_EXPORT"
650 export_define = "CONTENT_IMPLEMENTATION=1" 651 export_define = "CONTENT_IMPLEMENTATION=1"
651 export_header = "content/common/content_export.h" 652 export_header = "content/common/content_export.h"
652 } 653 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698