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 536 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
547 public_deps = [ | 547 public_deps = [ |
548 ":common", | 548 ":common", |
549 ] | 549 ] |
550 } | 550 } |
551 } | 551 } |
552 | 552 |
553 mojom("mojo_bindings") { | 553 mojom("mojo_bindings") { |
554 # This interface is internal to content. | 554 # This interface is internal to content. |
555 visibility = [ "//content/*" ] | 555 visibility = [ "//content/*" ] |
556 | 556 |
| 557 # indexed_db.mojom uses a native typemap that is not available in Java. |
| 558 cpp_only = true |
| 559 |
557 sources = [ | 560 sources = [ |
558 "associated_interfaces.mojom", | 561 "associated_interfaces.mojom", |
559 "child_memory_coordinator.mojom", | 562 "child_memory_coordinator.mojom", |
560 "frame.mojom", | 563 "frame.mojom", |
561 "image_downloader/image_downloader.mojom", | 564 "image_downloader/image_downloader.mojom", |
| 565 "indexed_db/indexed_db.mojom", |
562 "leveldb_wrapper.mojom", | 566 "leveldb_wrapper.mojom", |
563 "memory_coordinator.mojom", | 567 "memory_coordinator.mojom", |
564 "render_frame_message_filter.mojom", | 568 "render_frame_message_filter.mojom", |
565 "render_message_filter.mojom", | 569 "render_message_filter.mojom", |
566 "render_widget_window_tree_client_factory.mojom", | 570 "render_widget_window_tree_client_factory.mojom", |
567 "service_worker/embedded_worker_setup.mojom", | 571 "service_worker/embedded_worker_setup.mojom", |
568 "storage_partition_service.mojom", | 572 "storage_partition_service.mojom", |
569 "url_loader.mojom", | 573 "url_loader.mojom", |
570 "url_loader_factory.mojom", | 574 "url_loader_factory.mojom", |
571 ] | 575 ] |
(...skipping 10 matching lines...) Expand all Loading... |
582 "//third_party/WebKit/public:mojo_bindings", | 586 "//third_party/WebKit/public:mojo_bindings", |
583 "//ui/gfx/geometry/mojo", | 587 "//ui/gfx/geometry/mojo", |
584 "//url/mojo:url_mojom_gurl", | 588 "//url/mojo:url_mojom_gurl", |
585 "//url/mojo:url_mojom_origin", | 589 "//url/mojo:url_mojom_origin", |
586 ] | 590 ] |
587 | 591 |
588 export_class_attribute = "CONTENT_EXPORT" | 592 export_class_attribute = "CONTENT_EXPORT" |
589 export_define = "CONTENT_IMPLEMENTATION=1" | 593 export_define = "CONTENT_IMPLEMENTATION=1" |
590 export_header = "content/common/content_export.h" | 594 export_header = "content/common/content_export.h" |
591 } | 595 } |
OLD | NEW |