| 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 595 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 606 "renderer.mojom", | 606 "renderer.mojom", |
| 607 "service_worker/embedded_worker.mojom", | 607 "service_worker/embedded_worker.mojom", |
| 608 "service_worker/service_worker.mojom", | 608 "service_worker/service_worker.mojom", |
| 609 "service_worker/service_worker_event_dispatcher.mojom", | 609 "service_worker/service_worker_event_dispatcher.mojom", |
| 610 "service_worker/service_worker_provider.mojom", | 610 "service_worker/service_worker_provider.mojom", |
| 611 "service_worker/service_worker_types.mojom", | 611 "service_worker/service_worker_types.mojom", |
| 612 "storage_partition_service.mojom", | 612 "storage_partition_service.mojom", |
| 613 "url_loader.mojom", | 613 "url_loader.mojom", |
| 614 "url_loader_factory.mojom", | 614 "url_loader_factory.mojom", |
| 615 "video_capture.mojom", | 615 "video_capture.mojom", |
| 616 "worker_fetch_context_factory.mojom", |
| 616 ] | 617 ] |
| 617 | 618 |
| 618 import_dirs = [ "//mojo/services" ] | 619 import_dirs = [ "//mojo/services" ] |
| 619 | 620 |
| 620 public_deps = [ | 621 public_deps = [ |
| 621 "//components/leveldb/public/interfaces", | 622 "//components/leveldb/public/interfaces", |
| 622 "//components/payments/content:mojom_payment_app", | 623 "//components/payments/content:mojom_payment_app", |
| 623 "//content/public/common:interfaces", | 624 "//content/public/common:interfaces", |
| 624 | 625 |
| 625 # TODO(mcasas): remove the following dep after https://crbug.com/653994 | 626 # TODO(mcasas): remove the following dep after https://crbug.com/653994 |
| (...skipping 14 matching lines...) Expand all Loading... |
| 640 "//url/mojo:url_mojom_origin", | 641 "//url/mojo:url_mojom_origin", |
| 641 ] | 642 ] |
| 642 | 643 |
| 643 overridden_deps = [ "//ipc:mojom" ] | 644 overridden_deps = [ "//ipc:mojom" ] |
| 644 component_deps = [ "//ipc" ] | 645 component_deps = [ "//ipc" ] |
| 645 | 646 |
| 646 export_class_attribute = "CONTENT_EXPORT" | 647 export_class_attribute = "CONTENT_EXPORT" |
| 647 export_define = "CONTENT_IMPLEMENTATION=1" | 648 export_define = "CONTENT_IMPLEMENTATION=1" |
| 648 export_header = "content/common/content_export.h" | 649 export_header = "content/common/content_export.h" |
| 649 } | 650 } |
| OLD | NEW |