Index: ppapi/native_client/BUILD.gn |
diff --git a/ppapi/native_client/BUILD.gn b/ppapi/native_client/BUILD.gn |
index 96edfb0b48ba7eb99491b5fe33f6948495e67a57..362a083ac4b285cc09f358b7f7fd1098010c6b7b 100644 |
--- a/ppapi/native_client/BUILD.gn |
+++ b/ppapi/native_client/BUILD.gn |
@@ -32,6 +32,13 @@ if (is_nacl) { |
"//ppapi/proxy:ipc", |
"//ppapi/shared_impl", |
] |
+ |
+ assert_no_deps = [ |
+ # Skia is one of the easiest dependencies to accidentally add since a |
+ # bunch of graphics and GPU code uses it. |
+ "//skia/*", |
+ "//third_party/WebKit/*", |
+ ] |
} |
# TODO(phosek): We can remove this ugliness if we change the |