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

Unified Diff: ppapi/proxy/BUILD.gn

Issue 2767193005: Fix public dependencies on //ipc (Closed)
Patch Set: Created 3 years, 9 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 | « ppapi/host/BUILD.gn ('k') | remoting/host/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/BUILD.gn
diff --git a/ppapi/proxy/BUILD.gn b/ppapi/proxy/BUILD.gn
index bf8872327b86b336b0a9beea595d7fb775d1ebd5..da070f8f2245ed119984aee4d1f9d806c86c9ddc 100644
--- a/ppapi/proxy/BUILD.gn
+++ b/ppapi/proxy/BUILD.gn
@@ -274,6 +274,7 @@ component("proxy") {
]
public_deps = [
+ "//ipc",
"//ppapi/proxy:ipc_sources",
]
@@ -282,7 +283,6 @@ component("proxy") {
"//base",
"//gpu/command_buffer/client:gles2_implementation",
"//gpu/ipc/common:command_buffer_traits",
- "//ipc",
"//media:shared_memory_support",
"//mojo/edk/system",
"//ppapi/c",
@@ -357,10 +357,14 @@ source_set("ipc_sources") {
deps = [
"//base",
"//gpu/ipc/common:command_buffer_traits",
- "//ipc",
"//ppapi/c",
"//ppapi/shared_impl",
]
+
+ public_deps = [
+ "//ipc",
+ ]
+
if (!is_nacl) {
deps += [ "//skia" ]
}
« no previous file with comments | « ppapi/host/BUILD.gn ('k') | remoting/host/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698