| 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 537 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 "service_worker/fetch_event_dispatcher.mojom", | 576 "service_worker/fetch_event_dispatcher.mojom", |
| (...skipping 19 matching lines...) Expand all Loading... |
| 592 "//ui/gfx/geometry/mojo", | 596 "//ui/gfx/geometry/mojo", |
| 593 "//ui/gfx/mojo", | 597 "//ui/gfx/mojo", |
| 594 "//url/mojo:url_mojom_gurl", | 598 "//url/mojo:url_mojom_gurl", |
| 595 "//url/mojo:url_mojom_origin", | 599 "//url/mojo:url_mojom_origin", |
| 596 ] | 600 ] |
| 597 | 601 |
| 598 export_class_attribute = "CONTENT_EXPORT" | 602 export_class_attribute = "CONTENT_EXPORT" |
| 599 export_define = "CONTENT_IMPLEMENTATION=1" | 603 export_define = "CONTENT_IMPLEMENTATION=1" |
| 600 export_header = "content/common/content_export.h" | 604 export_header = "content/common/content_export.h" |
| 601 } | 605 } |
| OLD | NEW |