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

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

Issue 2370643004: Port messages sent by WebIDBFactoryImpl to Mojo. (Closed)
Patch Set: Address last nits and fix leaks in unit tests. Created 4 years, 2 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/indexed_db/webidbfactory_impl.cc ('k') | content/common/indexed_db/OWNERS » ('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 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
142 "in_process_child_thread_params.cc", 142 "in_process_child_thread_params.cc",
143 "in_process_child_thread_params.h", 143 "in_process_child_thread_params.h",
144 "indexed_db/indexed_db_constants.h", 144 "indexed_db/indexed_db_constants.h",
145 "indexed_db/indexed_db_key.cc", 145 "indexed_db/indexed_db_key.cc",
146 "indexed_db/indexed_db_key.h", 146 "indexed_db/indexed_db_key.h",
147 "indexed_db/indexed_db_key_path.cc", 147 "indexed_db/indexed_db_key_path.cc",
148 "indexed_db/indexed_db_key_path.h", 148 "indexed_db/indexed_db_key_path.h",
149 "indexed_db/indexed_db_key_range.cc", 149 "indexed_db/indexed_db_key_range.cc",
150 "indexed_db/indexed_db_key_range.h", 150 "indexed_db/indexed_db_key_range.h",
151 "indexed_db/indexed_db_messages.h", 151 "indexed_db/indexed_db_messages.h",
152 "indexed_db/indexed_db_metadata.cc",
153 "indexed_db/indexed_db_metadata.h",
152 "indexed_db/indexed_db_param_traits.cc", 154 "indexed_db/indexed_db_param_traits.cc",
153 "indexed_db/indexed_db_param_traits.h", 155 "indexed_db/indexed_db_param_traits.h",
156 "indexed_db/indexed_db_struct_traits.cc",
157 "indexed_db/indexed_db_struct_traits.h",
154 "input/event_with_latency_info.cc", 158 "input/event_with_latency_info.cc",
155 "input/event_with_latency_info.h", 159 "input/event_with_latency_info.h",
156 "input/gesture_event_stream_validator.cc", 160 "input/gesture_event_stream_validator.cc",
157 "input/gesture_event_stream_validator.h", 161 "input/gesture_event_stream_validator.h",
158 "input/input_event.cc", 162 "input/input_event.cc",
159 "input/input_event.h", 163 "input/input_event.h",
160 "input/input_event_ack.cc", 164 "input/input_event_ack.cc",
161 "input/input_event_ack.h", 165 "input/input_event_ack.h",
162 "input/input_event_dispatch_type.h", 166 "input/input_event_dispatch_type.h",
163 "input/input_event_stream_validator.cc", 167 "input/input_event_stream_validator.cc",
(...skipping 378 matching lines...) Expand 10 before | Expand all | Expand 10 after
542 public_deps = [ 546 public_deps = [
543 ":common", 547 ":common",
544 ] 548 ]
545 } 549 }
546 } 550 }
547 551
548 mojom("mojo_bindings") { 552 mojom("mojo_bindings") {
549 # This interface is internal to content. 553 # This interface is internal to content.
550 visibility = [ "//content/*" ] 554 visibility = [ "//content/*" ]
551 555
556 # indexed_db.mojom uses a native typemap that is not available in Java.
557 cpp_only = true
558
552 sources = [ 559 sources = [
553 "associated_interfaces.mojom", 560 "associated_interfaces.mojom",
554 "child_memory_coordinator.mojom", 561 "child_memory_coordinator.mojom",
555 "frame.mojom", 562 "frame.mojom",
556 "image_downloader/image_downloader.mojom", 563 "image_downloader/image_downloader.mojom",
564 "indexed_db/indexed_db.mojom",
557 "leveldb_wrapper.mojom", 565 "leveldb_wrapper.mojom",
558 "media/media_devices.mojom", 566 "media/media_devices.mojom",
559 "memory_coordinator.mojom", 567 "memory_coordinator.mojom",
560 "native_types.mojom", 568 "native_types.mojom",
561 "render_frame_message_filter.mojom", 569 "render_frame_message_filter.mojom",
562 "render_message_filter.mojom", 570 "render_message_filter.mojom",
563 "render_widget_window_tree_client_factory.mojom", 571 "render_widget_window_tree_client_factory.mojom",
564 "renderer.mojom", 572 "renderer.mojom",
565 "service_worker/embedded_worker.mojom", 573 "service_worker/embedded_worker.mojom",
566 "service_worker/embedded_worker_setup.mojom", 574 "service_worker/embedded_worker_setup.mojom",
(...skipping 28 matching lines...) Expand all
595 "//ui/gfx/geometry/mojo", 603 "//ui/gfx/geometry/mojo",
596 "//ui/gfx/mojo", 604 "//ui/gfx/mojo",
597 "//url/mojo:url_mojom_gurl", 605 "//url/mojo:url_mojom_gurl",
598 "//url/mojo:url_mojom_origin", 606 "//url/mojo:url_mojom_origin",
599 ] 607 ]
600 608
601 export_class_attribute = "CONTENT_EXPORT" 609 export_class_attribute = "CONTENT_EXPORT"
602 export_define = "CONTENT_IMPLEMENTATION=1" 610 export_define = "CONTENT_IMPLEMENTATION=1"
603 export_header = "content/common/content_export.h" 611 export_header = "content/common/content_export.h"
604 } 612 }
OLDNEW
« no previous file with comments | « content/child/indexed_db/webidbfactory_impl.cc ('k') | content/common/indexed_db/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698