| 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 583 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 594 "url_loader.mojom", | 594 "url_loader.mojom", |
| 595 "url_loader_factory.mojom", | 595 "url_loader_factory.mojom", |
| 596 "video_capture.mojom", | 596 "video_capture.mojom", |
| 597 ] | 597 ] |
| 598 | 598 |
| 599 import_dirs = [ "//mojo/services" ] | 599 import_dirs = [ "//mojo/services" ] |
| 600 | 600 |
| 601 public_deps = [ | 601 public_deps = [ |
| 602 "//components/leveldb/public/interfaces", | 602 "//components/leveldb/public/interfaces", |
| 603 "//content/public/common:interfaces", | 603 "//content/public/common:interfaces", |
| 604 "//device/power_monitor/public/interfaces", | |
| 605 | 604 |
| 606 # TODO(mcasas): remove the following dep after https://crbug.com/653994 | 605 # TODO(mcasas): remove the following dep after https://crbug.com/653994 |
| 607 "//gpu/ipc/common:interfaces", | 606 "//gpu/ipc/common:interfaces", |
| 608 "//ipc:mojom", | 607 "//ipc:mojom", |
| 609 "//media/capture/mojo:capture_types", | 608 "//media/capture/mojo:capture_types", |
| 610 "//media/mojo/interfaces", | 609 "//media/mojo/interfaces", |
| 611 "//mojo/common:common_custom_types", | 610 "//mojo/common:common_custom_types", |
| 612 "//services/service_manager/public/interfaces", | 611 "//services/service_manager/public/interfaces", |
| 613 "//services/ui/public/interfaces", | 612 "//services/ui/public/interfaces", |
| 614 "//services/video_capture/public/interfaces", | 613 "//services/video_capture/public/interfaces", |
| 615 "//skia/public/interfaces", | 614 "//skia/public/interfaces", |
| 616 "//third_party/WebKit/public:mojo_bindings", | 615 "//third_party/WebKit/public:mojo_bindings", |
| 617 "//ui/base/mojo:mojo_bindings", | 616 "//ui/base/mojo:mojo_bindings", |
| 618 "//ui/gfx/geometry/mojo", | 617 "//ui/gfx/geometry/mojo", |
| 619 "//ui/gfx/mojo", | 618 "//ui/gfx/mojo", |
| 620 "//url/mojo:url_mojom_gurl", | 619 "//url/mojo:url_mojom_gurl", |
| 621 "//url/mojo:url_mojom_origin", | 620 "//url/mojo:url_mojom_origin", |
| 622 ] | 621 ] |
| 623 | 622 |
| 624 export_class_attribute = "CONTENT_EXPORT" | 623 export_class_attribute = "CONTENT_EXPORT" |
| 625 export_define = "CONTENT_IMPLEMENTATION=1" | 624 export_define = "CONTENT_IMPLEMENTATION=1" |
| 626 export_header = "content/common/content_export.h" | 625 export_header = "content/common/content_export.h" |
| 627 } | 626 } |
| OLD | NEW |