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