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