| 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 568 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 579 | 579 |
| 580 # indexed_db.mojom uses a native typemap that is not available in Java. | 580 # indexed_db.mojom uses a native typemap that is not available in Java. |
| 581 cpp_only = true | 581 cpp_only = true |
| 582 | 582 |
| 583 sources = [ | 583 sources = [ |
| 584 "associated_interfaces.mojom", | 584 "associated_interfaces.mojom", |
| 585 "child.mojom", | 585 "child.mojom", |
| 586 "child_memory_coordinator.mojom", | 586 "child_memory_coordinator.mojom", |
| 587 "field_trial_recorder.mojom", | 587 "field_trial_recorder.mojom", |
| 588 "frame.mojom", | 588 "frame.mojom", |
| 589 "frame_sink_provider.mojom", | |
| 590 "host_zoom.mojom", | 589 "host_zoom.mojom", |
| 591 "image_downloader/image_downloader.mojom", | 590 "image_downloader/image_downloader.mojom", |
| 592 "indexed_db/indexed_db.mojom", | 591 "indexed_db/indexed_db.mojom", |
| 593 "leveldb_wrapper.mojom", | 592 "leveldb_wrapper.mojom", |
| 594 "media/media_devices.mojom", | 593 "media/media_devices.mojom", |
| 595 "media/renderer_audio_output_stream_factory.mojom", | 594 "media/renderer_audio_output_stream_factory.mojom", |
| 596 "memory_coordinator.mojom", | 595 "memory_coordinator.mojom", |
| 597 "native_types.mojom", | 596 "native_types.mojom", |
| 598 "push_messaging.mojom", | 597 "push_messaging.mojom", |
| 599 "render_frame_message_filter.mojom", | 598 "render_frame_message_filter.mojom", |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 638 ] | 637 ] |
| 639 | 638 |
| 640 overridden_deps = [ "//ipc:mojom" ] | 639 overridden_deps = [ "//ipc:mojom" ] |
| 641 component_deps = [ "//ipc" ] | 640 component_deps = [ "//ipc" ] |
| 642 | 641 |
| 643 export_class_attribute = "CONTENT_EXPORT" | 642 export_class_attribute = "CONTENT_EXPORT" |
| 644 export_define = "CONTENT_IMPLEMENTATION=1" | 643 export_define = "CONTENT_IMPLEMENTATION=1" |
| 645 export_header = "content/common/content_export.h" | 644 export_header = "content/common/content_export.h" |
| 646 use_once_callback = true | 645 use_once_callback = true |
| 647 } | 646 } |
| OLD | NEW |