| 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("//build/config/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//media/media_options.gni") | 7 import("//media/media_options.gni") |
| 8 import("//mojo/public/tools/bindings/mojom.gni") | 8 import("//mojo/public/tools/bindings/mojom.gni") |
| 9 import("//ppapi/features/features.gni") | 9 import("//ppapi/features/features.gni") |
| 10 import("//sandbox/features.gni") | 10 import("//sandbox/features.gni") |
| (...skipping 556 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 567 sources = [ | 567 sources = [ |
| 568 "associated_interfaces.mojom", | 568 "associated_interfaces.mojom", |
| 569 "child_memory_coordinator.mojom", | 569 "child_memory_coordinator.mojom", |
| 570 "frame.mojom", | 570 "frame.mojom", |
| 571 "host_zoom.mojom", | 571 "host_zoom.mojom", |
| 572 "image_downloader/image_downloader.mojom", | 572 "image_downloader/image_downloader.mojom", |
| 573 "indexed_db/indexed_db.mojom", | 573 "indexed_db/indexed_db.mojom", |
| 574 "leveldb_wrapper.mojom", | 574 "leveldb_wrapper.mojom", |
| 575 "media/media_devices.mojom", | 575 "media/media_devices.mojom", |
| 576 "memory_coordinator.mojom", | 576 "memory_coordinator.mojom", |
| 577 "metrics.mojom", |
| 577 "native_types.mojom", | 578 "native_types.mojom", |
| 578 "render_frame_message_filter.mojom", | 579 "render_frame_message_filter.mojom", |
| 579 "render_message_filter.mojom", | 580 "render_message_filter.mojom", |
| 580 "render_widget_window_tree_client_factory.mojom", | 581 "render_widget_window_tree_client_factory.mojom", |
| 581 "renderer.mojom", | 582 "renderer.mojom", |
| 582 "service_worker/embedded_worker.mojom", | 583 "service_worker/embedded_worker.mojom", |
| 583 "service_worker/service_worker.mojom", | 584 "service_worker/service_worker.mojom", |
| 584 "service_worker/service_worker_event_dispatcher.mojom", | 585 "service_worker/service_worker_event_dispatcher.mojom", |
| 585 "service_worker/service_worker_types.mojom", | 586 "service_worker/service_worker_types.mojom", |
| 586 "storage_partition_service.mojom", | 587 "storage_partition_service.mojom", |
| (...skipping 26 matching lines...) Expand all Loading... |
| 613 "//url/mojo:url_mojom_origin", | 614 "//url/mojo:url_mojom_origin", |
| 614 ] | 615 ] |
| 615 | 616 |
| 616 overridden_deps = [ "//ipc:mojom" ] | 617 overridden_deps = [ "//ipc:mojom" ] |
| 617 component_deps = [ "//ipc" ] | 618 component_deps = [ "//ipc" ] |
| 618 | 619 |
| 619 export_class_attribute = "CONTENT_EXPORT" | 620 export_class_attribute = "CONTENT_EXPORT" |
| 620 export_define = "CONTENT_IMPLEMENTATION=1" | 621 export_define = "CONTENT_IMPLEMENTATION=1" |
| 621 export_header = "content/common/content_export.h" | 622 export_header = "content/common/content_export.h" |
| 622 } | 623 } |
| OLD | NEW |