| 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 583 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 594 sources = [ | 594 sources = [ |
| 595 "associated_interfaces.mojom", | 595 "associated_interfaces.mojom", |
| 596 "child.mojom", | 596 "child.mojom", |
| 597 "child_memory_coordinator.mojom", | 597 "child_memory_coordinator.mojom", |
| 598 "field_trial_recorder.mojom", | 598 "field_trial_recorder.mojom", |
| 599 "frame.mojom", | 599 "frame.mojom", |
| 600 "frame_sink_provider.mojom", | 600 "frame_sink_provider.mojom", |
| 601 "host_zoom.mojom", | 601 "host_zoom.mojom", |
| 602 "image_downloader/image_downloader.mojom", | 602 "image_downloader/image_downloader.mojom", |
| 603 "indexed_db/indexed_db.mojom", | 603 "indexed_db/indexed_db.mojom", |
| 604 "input/input_handler.mojom", |
| 604 "leveldb_wrapper.mojom", | 605 "leveldb_wrapper.mojom", |
| 605 "manifest_observer.mojom", | 606 "manifest_observer.mojom", |
| 606 "media/media_devices.mojom", | 607 "media/media_devices.mojom", |
| 607 "media/renderer_audio_output_stream_factory.mojom", | 608 "media/renderer_audio_output_stream_factory.mojom", |
| 608 "memory_coordinator.mojom", | 609 "memory_coordinator.mojom", |
| 609 "native_types.mojom", | 610 "native_types.mojom", |
| 610 "network_service.mojom", | 611 "network_service.mojom", |
| 611 "push_messaging.mojom", | 612 "push_messaging.mojom", |
| 612 "render_frame_message_filter.mojom", | 613 "render_frame_message_filter.mojom", |
| 613 "render_message_filter.mojom", | 614 "render_message_filter.mojom", |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 645 "//ui/gfx/mojo", | 646 "//ui/gfx/mojo", |
| 646 "//url/mojo:url_mojom_gurl", | 647 "//url/mojo:url_mojom_gurl", |
| 647 "//url/mojo:url_mojom_origin", | 648 "//url/mojo:url_mojom_origin", |
| 648 ] | 649 ] |
| 649 | 650 |
| 650 component_output_prefix = "content_common_mojo_bindings" | 651 component_output_prefix = "content_common_mojo_bindings" |
| 651 export_class_attribute = "CONTENT_EXPORT" | 652 export_class_attribute = "CONTENT_EXPORT" |
| 652 export_define = "CONTENT_IMPLEMENTATION=1" | 653 export_define = "CONTENT_IMPLEMENTATION=1" |
| 653 export_header = "content/common/content_export.h" | 654 export_header = "content/common/content_export.h" |
| 654 } | 655 } |
| OLD | NEW |