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

Unified Diff: media/mojo/services/BUILD.gn

Issue 2058023004: Clean up Mojo C API dependent targets (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « media/mojo/common/BUILD.gn ('k') | mojo/common/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/mojo/services/BUILD.gn
diff --git a/media/mojo/services/BUILD.gn b/media/mojo/services/BUILD.gn
index 89e45dafaad8bdf3189b9244084f5f9e67f4258a..b4aec76ebab3ef88355f29d297ad198cb1c4e3fc 100644
--- a/media/mojo/services/BUILD.gn
+++ b/media/mojo/services/BUILD.gn
@@ -72,16 +72,19 @@ source_set("proxy") {
public_configs = [ ":mojo_media_config" ]
- deps = [
+ public_deps = [
"//base",
"//media",
- "//media/mojo/common",
"//media/mojo/interfaces",
- "//mojo/common",
- "//mojo/public/c/system:for_component",
- "//services/shell/public/cpp:sources",
+ "//mojo/public/cpp/bindings",
+ "//mojo/public/cpp/system",
"//services/shell/public/interfaces",
- "//ui/gfx/geometry/mojo",
+ ]
+
+ deps = [
+ "//media/mojo/common",
+ "//mojo/common",
+ "//services/shell/public/cpp",
]
}
@@ -126,20 +129,22 @@ component("services") {
configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
public_configs = [ ":mojo_media_config" ]
- deps = [
+ public_deps = [
"//base",
"//media",
+ "//media/mojo/interfaces",
+ "//mojo/public/cpp/bindings",
+ "//mojo/public/cpp/system",
+ "//services/shell/public/cpp",
+ "//url",
+ ]
+
+ deps = [
"//media:cdm_api",
"//media:shared_memory_support",
"//media/mojo/common",
- "//media/mojo/interfaces",
"//mojo/common",
- "//mojo/public/c/system:for_component",
- "//services/shell/public/cpp",
- "//services/shell/public/cpp:sources",
"//services/shell/public/interfaces",
- "//ui/gfx/geometry/mojo",
- "//url",
]
if (is_android) {
@@ -177,12 +182,15 @@ mojo_native_application("media") {
"test_mojo_media_client.h",
]
- deps = [
+ public_deps = [
":services",
"//base",
"//media",
- "//mojo/public/c/system:for_shared_library",
- "//services/shell/public/cpp:sources",
+ ]
+
+ deps = [
+ "//mojo/public/c/system",
+ "//services/shell/public/cpp",
]
}
« no previous file with comments | « media/mojo/common/BUILD.gn ('k') | mojo/common/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698