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

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

Issue 2370643004: Port messages sent by WebIDBFactoryImpl to Mojo. (Closed)
Patch Set: Rebase over the Blink reformatting. 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
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 537 matching lines...) Expand 10 before | Expand all | Expand 10 after
548 public_deps = [ 548 public_deps = [
549 ":common", 549 ":common",
550 ] 550 ]
551 } 551 }
552 } 552 }
553 553
554 mojom("mojo_bindings") { 554 mojom("mojo_bindings") {
555 # This interface is internal to content. 555 # This interface is internal to content.
556 visibility = [ "//content/*" ] 556 visibility = [ "//content/*" ]
557 557
558 # indexed_db.mojom uses a native typemap that is not available in Java.
559 cpp_only = true
560
558 sources = [ 561 sources = [
559 "associated_interfaces.mojom", 562 "associated_interfaces.mojom",
560 "child_memory_coordinator.mojom", 563 "child_memory_coordinator.mojom",
561 "frame.mojom", 564 "frame.mojom",
562 "image_downloader/image_downloader.mojom", 565 "image_downloader/image_downloader.mojom",
566 "indexed_db/indexed_db.mojom",
563 "leveldb_wrapper.mojom", 567 "leveldb_wrapper.mojom",
564 "memory_coordinator.mojom", 568 "memory_coordinator.mojom",
565 "native_types.mojom", 569 "native_types.mojom",
566 "render_frame_message_filter.mojom", 570 "render_frame_message_filter.mojom",
567 "render_message_filter.mojom", 571 "render_message_filter.mojom",
568 "render_widget_window_tree_client_factory.mojom", 572 "render_widget_window_tree_client_factory.mojom",
569 "renderer.mojom", 573 "renderer.mojom",
570 "service_worker/embedded_worker.mojom", 574 "service_worker/embedded_worker.mojom",
571 "service_worker/embedded_worker_setup.mojom", 575 "service_worker/embedded_worker_setup.mojom",
572 "storage_partition_service.mojom", 576 "storage_partition_service.mojom",
(...skipping 17 matching lines...) Expand all
590 "//ui/gfx/geometry/mojo", 594 "//ui/gfx/geometry/mojo",
591 "//ui/gfx/mojo", 595 "//ui/gfx/mojo",
592 "//url/mojo:url_mojom_gurl", 596 "//url/mojo:url_mojom_gurl",
593 "//url/mojo:url_mojom_origin", 597 "//url/mojo:url_mojom_origin",
594 ] 598 ]
595 599
596 export_class_attribute = "CONTENT_EXPORT" 600 export_class_attribute = "CONTENT_EXPORT"
597 export_define = "CONTENT_IMPLEMENTATION=1" 601 export_define = "CONTENT_IMPLEMENTATION=1"
598 export_header = "content/common/content_export.h" 602 export_header = "content/common/content_export.h"
599 } 603 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698