| Index: mojo/python/BUILD.gn
|
| diff --git a/mojo/python/BUILD.gn b/mojo/python/BUILD.gn
|
| index f96c2ccfab70dcc9529d732c1a402ab89b52cbc0..3c71480894e8702ea207658905bfb21468865c52 100644
|
| --- a/mojo/python/BUILD.gn
|
| +++ b/mojo/python/BUILD.gn
|
| @@ -16,9 +16,7 @@ group("python") {
|
| # GYP version: mojo/mojo.gyp:mojo_python_embedder
|
| python_binary_module("embedder") {
|
| python_base_module = "mojo"
|
| - sources = [
|
| - "system/mojo/embedder.pyx",
|
| - ]
|
| + cython_sources = [ "system/mojo/embedder.pyx" ]
|
| deps = [
|
| "//mojo/edk/system",
|
| ]
|
| @@ -38,9 +36,7 @@ copy("tests_module") {
|
|
|
| python_binary_module("validation_util") {
|
| python_base_module = "mojo/tests"
|
| - sources = [
|
| - "system/mojo/tests/validation_util.pyx",
|
| - ]
|
| + cython_sources = [ "system/mojo/tests/validation_util.pyx" ]
|
| deps = [
|
| "//mojo/public/cpp/bindings/tests:mojo_public_bindings_test_utils",
|
| ]
|
|
|