| 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",
|
| + ]
|
| +}
|
|
|