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

Unified Diff: mojo/public/python/BUILD.gn

Issue 796373006: Content handler for python. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 11 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
Index: mojo/public/python/BUILD.gn
diff --git a/mojo/public/python/BUILD.gn b/mojo/public/python/BUILD.gn
index 6c396be396a642274c4984167c028c3c8a014838..d1190154a48d5916cca5ef943c34f614d42cf50d 100644
--- a/mojo/public/python/BUILD.gn
+++ b/mojo/public/python/BUILD.gn
@@ -3,6 +3,7 @@
# found in the LICENSE file.
import("//third_party/cython/rules.gni")
+import("rules.gni")
group("python") {
deps = [
@@ -109,3 +110,15 @@ copy("bindings") {
":system",
]
}
+
+python_package("packaged_bindings") {
+ sources = [
+ "mojo/__init__.py",
+ "mojo/bindings/__init__.py",
+ "mojo/bindings/descriptor.py",
+ "mojo/bindings/messaging.py",
+ "mojo/bindings/promise.py",
+ "mojo/bindings/reflection.py",
+ "mojo/bindings/serialization.py",
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698