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 | 6 |
| 7 # GYP version: mojo/mojo.gyp:mojo_python |
7 group("python") { | 8 group("python") { |
8 deps = [ | 9 deps = [ |
9 ":embedder", | 10 ":embedder", |
| 11 "//mojo/public/python", |
10 ] | 12 ] |
11 } | 13 } |
12 | 14 |
| 15 # GYP version: mojo/mojo.gyp:mojo_python_embedder |
13 python_binary_module("embedder") { | 16 python_binary_module("embedder") { |
14 python_base_module = "mojo" | 17 python_base_module = "mojo" |
15 sources = [ | 18 sources = [ |
16 "system/mojo/embedder.pyx", | 19 "system/mojo/embedder.pyx", |
17 ] | 20 ] |
18 deps = [ | 21 deps = [ |
19 "//mojo/system", | 22 "//mojo/system", |
20 ] | 23 ] |
21 datadeps = [ | 24 datadeps = [ |
22 "//mojo/public/python:system", | 25 "//mojo/public/python:system", |
23 ] | 26 ] |
24 } | 27 } |
OLD | NEW |