Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(705)

Side by Side Diff: content/common/BUILD.gn

Issue 2409893003: VideoCapture: more migration IPC-->mojo, part 5 (Closed)
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
572 import_dirs = [ "//mojo/services" ] 572 import_dirs = [ "//mojo/services" ]
573 573
574 public_deps = [ 574 public_deps = [
575 "//components/leveldb/public/interfaces", 575 "//components/leveldb/public/interfaces",
576 "//content/public/common:interfaces", 576 "//content/public/common:interfaces",
577 "//device/sensors/public/interfaces", 577 "//device/sensors/public/interfaces",
578 578
579 # TODO(mcasas): remove the following dep after https://crbug.com/653994 579 # TODO(mcasas): remove the following dep after https://crbug.com/653994
580 "//gpu/ipc/common:interfaces", 580 "//gpu/ipc/common:interfaces",
581 "//ipc:mojom", 581 "//ipc:mojom",
582 "//media/mojo/interfaces",
583 "//mojo/common:common_custom_types",
582 "//services/shell/public/interfaces", 584 "//services/shell/public/interfaces",
583 "//services/ui/public/interfaces", 585 "//services/ui/public/interfaces",
584 "//services/video_capture/public/interfaces", 586 "//services/video_capture/public/interfaces",
585 "//skia/public/interfaces", 587 "//skia/public/interfaces",
586 "//third_party/WebKit/public:mojo_bindings", 588 "//third_party/WebKit/public:mojo_bindings",
587 "//third_party/WebKit/public:new_wrapper_types_mojo_bindings", 589 "//third_party/WebKit/public:new_wrapper_types_mojo_bindings",
588 "//ui/base/mojo:mojo_bindings", 590 "//ui/base/mojo:mojo_bindings",
589 "//ui/gfx/geometry/mojo", 591 "//ui/gfx/geometry/mojo",
590 "//ui/gfx/mojo", 592 "//ui/gfx/mojo",
591 "//url/mojo:url_mojom_gurl", 593 "//url/mojo:url_mojom_gurl",
592 "//url/mojo:url_mojom_origin", 594 "//url/mojo:url_mojom_origin",
593 ] 595 ]
594 596
595 export_class_attribute = "CONTENT_EXPORT" 597 export_class_attribute = "CONTENT_EXPORT"
596 export_define = "CONTENT_IMPLEMENTATION=1" 598 export_define = "CONTENT_IMPLEMENTATION=1"
597 export_header = "content/common/content_export.h" 599 export_header = "content/common/content_export.h"
598 } 600 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698