| 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 "storage_partition_service.mojom", | 606 "storage_partition_service.mojom", |
| 607 "url_loader.mojom", | 607 "url_loader.mojom", |
| 608 "url_loader_factory.mojom", | 608 "url_loader_factory.mojom", |
| 609 "video_capture.mojom", | 609 "video_capture.mojom", |
| 610 ] | 610 ] |
| 611 | 611 |
| 612 import_dirs = [ "//mojo/services" ] | 612 import_dirs = [ "//mojo/services" ] |
| 613 | 613 |
| 614 public_deps = [ | 614 public_deps = [ |
| 615 "//components/leveldb/public/interfaces", | 615 "//components/leveldb/public/interfaces", |
| 616 "//components/payments/content:mojom_payment_app", | 616 "//components/payments/mojom:mojom_payment_app", |
| 617 "//content/public/common:interfaces", | 617 "//content/public/common:interfaces", |
| 618 | 618 |
| 619 # TODO(mcasas): remove the following dep after https://crbug.com/653994 | 619 # TODO(mcasas): remove the following dep after https://crbug.com/653994 |
| 620 "//gpu/ipc/common:interfaces", | 620 "//gpu/ipc/common:interfaces", |
| 621 "//ipc:mojom", | 621 "//ipc:mojom", |
| 622 "//media/capture/mojo:capture_types", | 622 "//media/capture/mojo:capture_types", |
| 623 "//media/mojo/interfaces", | 623 "//media/mojo/interfaces", |
| 624 "//mojo/common:common_custom_types", | 624 "//mojo/common:common_custom_types", |
| 625 "//services/service_manager/public/interfaces", | 625 "//services/service_manager/public/interfaces", |
| 626 "//services/ui/public/interfaces", | 626 "//services/ui/public/interfaces", |
| 627 "//services/video_capture/public/interfaces", | 627 "//services/video_capture/public/interfaces", |
| 628 "//skia/public/interfaces", | 628 "//skia/public/interfaces", |
| 629 "//third_party/WebKit/public:mojo_bindings", | 629 "//third_party/WebKit/public:mojo_bindings", |
| 630 "//ui/base/mojo:mojo_bindings", | 630 "//ui/base/mojo:mojo_bindings", |
| 631 "//ui/gfx/geometry/mojo", | 631 "//ui/gfx/geometry/mojo", |
| 632 "//ui/gfx/mojo", | 632 "//ui/gfx/mojo", |
| 633 "//url/mojo:url_mojom_gurl", | 633 "//url/mojo:url_mojom_gurl", |
| 634 "//url/mojo:url_mojom_origin", | 634 "//url/mojo:url_mojom_origin", |
| 635 ] | 635 ] |
| 636 | 636 |
| 637 overridden_deps = [ "//ipc:mojom" ] | 637 overridden_deps = [ "//ipc:mojom" ] |
| 638 component_deps = [ "//ipc" ] | 638 component_deps = [ "//ipc" ] |
| 639 | 639 |
| 640 export_class_attribute = "CONTENT_EXPORT" | 640 export_class_attribute = "CONTENT_EXPORT" |
| 641 export_define = "CONTENT_IMPLEMENTATION=1" | 641 export_define = "CONTENT_IMPLEMENTATION=1" |
| 642 export_header = "content/common/content_export.h" | 642 export_header = "content/common/content_export.h" |
| 643 } | 643 } |
| OLD | NEW |