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 541 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
552 # This interface is internal to content. | 552 # This interface is internal to content. |
553 visibility = [ "//content/*" ] | 553 visibility = [ "//content/*" ] |
554 | 554 |
555 # indexed_db.mojom uses a native typemap that is not available in Java. | 555 # indexed_db.mojom uses a native typemap that is not available in Java. |
556 cpp_only = true | 556 cpp_only = true |
557 | 557 |
558 sources = [ | 558 sources = [ |
559 "associated_interfaces.mojom", | 559 "associated_interfaces.mojom", |
560 "child_memory_coordinator.mojom", | 560 "child_memory_coordinator.mojom", |
561 "frame.mojom", | 561 "frame.mojom", |
| 562 "host_zoom.mojom", |
562 "image_downloader/image_downloader.mojom", | 563 "image_downloader/image_downloader.mojom", |
563 "indexed_db/indexed_db.mojom", | 564 "indexed_db/indexed_db.mojom", |
564 "leveldb_wrapper.mojom", | 565 "leveldb_wrapper.mojom", |
565 "media/media_devices.mojom", | 566 "media/media_devices.mojom", |
566 "memory_coordinator.mojom", | 567 "memory_coordinator.mojom", |
567 "native_types.mojom", | 568 "native_types.mojom", |
568 "render_frame_message_filter.mojom", | 569 "render_frame_message_filter.mojom", |
569 "render_message_filter.mojom", | 570 "render_message_filter.mojom", |
570 "render_widget_window_tree_client_factory.mojom", | 571 "render_widget_window_tree_client_factory.mojom", |
571 "renderer.mojom", | 572 "renderer.mojom", |
(...skipping 30 matching lines...) Expand all Loading... |
602 "//ui/gfx/geometry/mojo", | 603 "//ui/gfx/geometry/mojo", |
603 "//ui/gfx/mojo", | 604 "//ui/gfx/mojo", |
604 "//url/mojo:url_mojom_gurl", | 605 "//url/mojo:url_mojom_gurl", |
605 "//url/mojo:url_mojom_origin", | 606 "//url/mojo:url_mojom_origin", |
606 ] | 607 ] |
607 | 608 |
608 export_class_attribute = "CONTENT_EXPORT" | 609 export_class_attribute = "CONTENT_EXPORT" |
609 export_define = "CONTENT_IMPLEMENTATION=1" | 610 export_define = "CONTENT_IMPLEMENTATION=1" |
610 export_header = "content/common/content_export.h" | 611 export_header = "content/common/content_export.h" |
611 } | 612 } |
OLD | NEW |