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 group("python") { | 7 group("python") { |
8 deps = [ | 8 deps = [ |
9 "//mojo/public/python", | |
jamesr
2014/09/15 17:18:05
order should be local targets first (sorted, then
qsr
2014/09/16 08:46:05
Done.
| |
9 ":embedder", | 10 ":embedder", |
10 ] | 11 ] |
11 } | 12 } |
12 | 13 |
13 python_binary_module("embedder") { | 14 python_binary_module("embedder") { |
jamesr
2014/09/15 17:18:05
could you add a comment here too saying something
qsr
2014/09/16 08:46:05
Done.
| |
14 python_base_module = "mojo" | 15 python_base_module = "mojo" |
15 sources = [ | 16 sources = [ |
16 "system/mojo/embedder.pyx", | 17 "system/mojo/embedder.pyx", |
17 ] | 18 ] |
18 deps = [ | 19 deps = [ |
19 "//mojo/system", | 20 "//mojo/system", |
20 ] | 21 ] |
21 datadeps = [ | 22 datadeps = [ |
22 "//mojo/public/python:system", | 23 "//mojo/public/python:system", |
23 ] | 24 ] |
24 } | 25 } |
OLD | NEW |