| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 import("//third_party/cython/rules.gni") | 5 import("//third_party/cython/rules.gni") |
| 6 import("rules.gni") |
| 6 | 7 |
| 7 group("python") { | 8 group("python") { |
| 8 deps = [ | 9 deps = [ |
| 9 ":base", | 10 ":base", |
| 10 ":bindings", | 11 ":bindings", |
| 11 ":system", | 12 ":system", |
| 12 ":system_impl", | 13 ":system_impl", |
| 13 ] | 14 ] |
| 14 } | 15 } |
| 15 | 16 |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 "mojo/bindings/serialization.py", | 103 "mojo/bindings/serialization.py", |
| 103 ] | 104 ] |
| 104 outputs = [ | 105 outputs = [ |
| 105 "$root_out_dir/python/mojo/bindings/{{source_file_part}}", | 106 "$root_out_dir/python/mojo/bindings/{{source_file_part}}", |
| 106 ] | 107 ] |
| 107 deps = [ | 108 deps = [ |
| 108 ":base", | 109 ":base", |
| 109 ":system", | 110 ":system", |
| 110 ] | 111 ] |
| 111 } | 112 } |
| 113 |
| 114 python_package("packaged_bindings") { |
| 115 sources = [ |
| 116 "mojo/__init__.py", |
| 117 "mojo/bindings/__init__.py", |
| 118 "mojo/bindings/descriptor.py", |
| 119 "mojo/bindings/messaging.py", |
| 120 "mojo/bindings/promise.py", |
| 121 "mojo/bindings/reflection.py", |
| 122 "mojo/bindings/serialization.py", |
| 123 ] |
| 124 } |
| OLD | NEW |