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("features.gni") | 5 import("features.gni") |
6 import("//build/buildflag_header.gni") | 6 import("//build/buildflag_header.gni") |
7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
9 import("//media/media_options.gni") | 9 import("//media/media_options.gni") |
10 import("//mojo/public/tools/bindings/mojom.gni") | 10 import("//mojo/public/tools/bindings/mojom.gni") |
(...skipping 571 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
582 | 582 |
583 mojom("mojo_bindings") { | 583 mojom("mojo_bindings") { |
584 # This interface is internal to content. | 584 # This interface is internal to content. |
585 visibility = [ "//content/*" ] | 585 visibility = [ "//content/*" ] |
586 | 586 |
587 # indexed_db.mojom uses a native typemap that is not available in Java. | 587 # indexed_db.mojom uses a native typemap that is not available in Java. |
588 cpp_only = true | 588 cpp_only = true |
589 | 589 |
590 sources = [ | 590 sources = [ |
591 "associated_interfaces.mojom", | 591 "associated_interfaces.mojom", |
| 592 "child.mojom", |
592 "child_memory_coordinator.mojom", | 593 "child_memory_coordinator.mojom", |
593 "field_trial_recorder.mojom", | 594 "field_trial_recorder.mojom", |
594 "frame.mojom", | 595 "frame.mojom", |
595 "host_zoom.mojom", | 596 "host_zoom.mojom", |
596 "image_downloader/image_downloader.mojom", | 597 "image_downloader/image_downloader.mojom", |
597 "indexed_db/indexed_db.mojom", | 598 "indexed_db/indexed_db.mojom", |
598 "leveldb_wrapper.mojom", | 599 "leveldb_wrapper.mojom", |
599 "media/media_devices.mojom", | 600 "media/media_devices.mojom", |
600 "memory_coordinator.mojom", | 601 "memory_coordinator.mojom", |
601 "native_types.mojom", | 602 "native_types.mojom", |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
640 "//url/mojo:url_mojom_origin", | 641 "//url/mojo:url_mojom_origin", |
641 ] | 642 ] |
642 | 643 |
643 overridden_deps = [ "//ipc:mojom" ] | 644 overridden_deps = [ "//ipc:mojom" ] |
644 component_deps = [ "//ipc" ] | 645 component_deps = [ "//ipc" ] |
645 | 646 |
646 export_class_attribute = "CONTENT_EXPORT" | 647 export_class_attribute = "CONTENT_EXPORT" |
647 export_define = "CONTENT_IMPLEMENTATION=1" | 648 export_define = "CONTENT_IMPLEMENTATION=1" |
648 export_header = "content/common/content_export.h" | 649 export_header = "content/common/content_export.h" |
649 } | 650 } |
OLD | NEW |