| 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 597 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 608 "network_service.mojom", | 608 "network_service.mojom", |
| 609 "push_messaging.mojom", | 609 "push_messaging.mojom", |
| 610 "render_frame_message_filter.mojom", | 610 "render_frame_message_filter.mojom", |
| 611 "render_message_filter.mojom", | 611 "render_message_filter.mojom", |
| 612 "render_widget_window_tree_client_factory.mojom", | 612 "render_widget_window_tree_client_factory.mojom", |
| 613 "renderer.mojom", | 613 "renderer.mojom", |
| 614 "service_worker/embedded_worker.mojom", | 614 "service_worker/embedded_worker.mojom", |
| 615 "service_worker/service_worker.mojom", | 615 "service_worker/service_worker.mojom", |
| 616 "service_worker/service_worker_event_dispatcher.mojom", | 616 "service_worker/service_worker_event_dispatcher.mojom", |
| 617 "service_worker/service_worker_provider.mojom", | 617 "service_worker/service_worker_provider.mojom", |
| 618 "service_worker/service_worker_provider_interfaces.mojom", |
| 618 "service_worker/service_worker_types.mojom", | 619 "service_worker/service_worker_types.mojom", |
| 619 "storage_partition_service.mojom", | 620 "storage_partition_service.mojom", |
| 620 "url_loader.mojom", | 621 "url_loader.mojom", |
| 621 "url_loader_factory.mojom", | 622 "url_loader_factory.mojom", |
| 622 "video_capture.mojom", | 623 "video_capture.mojom", |
| 623 "worker_url_loader_factory_provider.mojom", | 624 "worker_url_loader_factory_provider.mojom", |
| 624 ] | 625 ] |
| 625 | 626 |
| 626 import_dirs = [ "//mojo/services" ] | 627 import_dirs = [ "//mojo/services" ] |
| 627 | 628 |
| (...skipping 15 matching lines...) Expand all Loading... |
| 643 "//ui/gfx/mojo", | 644 "//ui/gfx/mojo", |
| 644 "//url/mojo:url_mojom_gurl", | 645 "//url/mojo:url_mojom_gurl", |
| 645 "//url/mojo:url_mojom_origin", | 646 "//url/mojo:url_mojom_origin", |
| 646 ] | 647 ] |
| 647 | 648 |
| 648 component_output_prefix = "content_common_mojo_bindings" | 649 component_output_prefix = "content_common_mojo_bindings" |
| 649 export_class_attribute = "CONTENT_EXPORT" | 650 export_class_attribute = "CONTENT_EXPORT" |
| 650 export_define = "CONTENT_IMPLEMENTATION=1" | 651 export_define = "CONTENT_IMPLEMENTATION=1" |
| 651 export_header = "content/common/content_export.h" | 652 export_header = "content/common/content_export.h" |
| 652 } | 653 } |
| OLD | NEW |