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

Unified Diff: services/python/content_handler/BUILD.gn

Issue 1254963012: Fix generated file dependencies for upcoming gn (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 4 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 | « mojo/public/mojo_application.gni ('k') | shell/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: services/python/content_handler/BUILD.gn
diff --git a/services/python/content_handler/BUILD.gn b/services/python/content_handler/BUILD.gn
index b4ed9877827243445d7b922a4107082bc3b76fd1..ce7059e20c545b567aefd3a2f381b21211437e0e 100644
--- a/services/python/content_handler/BUILD.gn
+++ b/services/python/content_handler/BUILD.gn
@@ -37,7 +37,10 @@ python_binary_source_set("content_handler_src") {
}
copy("common_system_pxd") {
- visibility = [ ":mojo_system_impl" ]
+ visibility = [
+ ":mojo_system_impl",
+ ":mojo_system_impl_cython_compiler",
+ ]
sources = [
"//mojo/public/python/c_async_waiter.pxd",
"//mojo/public/python/c_export.pxd",
@@ -59,7 +62,6 @@ python_binary_source_set("mojo_system_impl") {
"python_system_impl_helper.h",
]
deps = [
- ":common_system_pxd",
"//base",
"//mojo/environment:chromium",
"//mojo/common",
@@ -69,4 +71,7 @@ python_binary_source_set("mojo_system_impl") {
"//mojo/public/cpp/bindings:callback",
"//mojo/public/python:python_common",
]
+ public_deps = [
+ ":common_system_pxd",
+ ]
}
« no previous file with comments | « mojo/public/mojo_application.gni ('k') | shell/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698