| Index: mojo/public/python/BUILD.gn
|
| diff --git a/mojo/public/python/BUILD.gn b/mojo/public/python/BUILD.gn
|
| index 6178f05bd0a8a91d91a130f614b199a2dcf6e39b..9323acc60eb23a4f5098ef0e70fc3a266f08fc14 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 = [
|
| @@ -96,3 +97,14 @@ copy("bindings") {
|
| ":mojo_system",
|
| ]
|
| }
|
| +
|
| +python_package("packaged_bindings") {
|
| + sources = [
|
| + "mojo_bindings/__init__.py",
|
| + "mojo_bindings/descriptor.py",
|
| + "mojo_bindings/messaging.py",
|
| + "mojo_bindings/promise.py",
|
| + "mojo_bindings/reflection.py",
|
| + "mojo_bindings/serialization.py",
|
| + ]
|
| +}
|
|
|