| 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("//tools/ipc_fuzzer/ipc_fuzzer.gni") | 9 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") |
| 10 if (is_mac) { | 10 if (is_mac) { |
| (...skipping 561 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 572 "url_loader_factory.mojom", | 572 "url_loader_factory.mojom", |
| 573 "video_capture.mojom", | 573 "video_capture.mojom", |
| 574 ] | 574 ] |
| 575 | 575 |
| 576 import_dirs = [ "//mojo/services" ] | 576 import_dirs = [ "//mojo/services" ] |
| 577 | 577 |
| 578 public_deps = [ | 578 public_deps = [ |
| 579 "//components/leveldb/public/interfaces", | 579 "//components/leveldb/public/interfaces", |
| 580 "//content/public/common:interfaces", | 580 "//content/public/common:interfaces", |
| 581 "//device/sensors/public/interfaces", | 581 "//device/sensors/public/interfaces", |
| 582 |
| 583 # TODO(mcasas): remove the following dep after https://crbug.com/653994 |
| 584 "//gpu/ipc/common:interfaces", |
| 582 "//ipc:mojom", | 585 "//ipc:mojom", |
| 583 "//services/shell/public/interfaces", | 586 "//services/shell/public/interfaces", |
| 584 "//services/ui/public/interfaces", | 587 "//services/ui/public/interfaces", |
| 585 "//services/video_capture/public/interfaces", | 588 "//services/video_capture/public/interfaces", |
| 586 "//skia/public/interfaces", | 589 "//skia/public/interfaces", |
| 587 "//third_party/WebKit/public:mojo_bindings", | 590 "//third_party/WebKit/public:mojo_bindings", |
| 588 "//third_party/WebKit/public:new_wrapper_types_mojo_bindings", | 591 "//third_party/WebKit/public:new_wrapper_types_mojo_bindings", |
| 589 "//ui/base/mojo:mojo_bindings", | 592 "//ui/base/mojo:mojo_bindings", |
| 590 "//ui/gfx/geometry/mojo", | 593 "//ui/gfx/geometry/mojo", |
| 591 "//ui/gfx/mojo", | 594 "//ui/gfx/mojo", |
| 592 "//url/mojo:url_mojom_gurl", | 595 "//url/mojo:url_mojom_gurl", |
| 593 "//url/mojo:url_mojom_origin", | 596 "//url/mojo:url_mojom_origin", |
| 594 ] | 597 ] |
| 595 | 598 |
| 596 export_class_attribute = "CONTENT_EXPORT" | 599 export_class_attribute = "CONTENT_EXPORT" |
| 597 export_define = "CONTENT_IMPLEMENTATION=1" | 600 export_define = "CONTENT_IMPLEMENTATION=1" |
| 598 export_header = "content/common/content_export.h" | 601 export_header = "content/common/content_export.h" |
| 599 } | 602 } |
| OLD | NEW |