OLD | NEW |
---|---|
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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("//mojo/public/python/rules.gni") | 5 import("//mojo/public/python/rules.gni") |
6 | 6 |
7 group("python") { | 7 python_packaged_application("mojo_url_redirector") { |
8 testonly = true | |
9 deps = [ | |
10 ":python_example_service", | |
11 ] | |
12 } | |
13 | |
14 python_packaged_application("python_example_service") { | |
15 sources = [ | 8 sources = [ |
16 "__mojo__.py", | 9 "__mojo__.py", |
17 ] | 10 ] |
18 deps = [ | 11 deps = [ |
19 "//examples/apptest:bindings", | |
20 "//mojo/public/interfaces/application", | 12 "//mojo/public/interfaces/application", |
21 "//mojo/public/python:packaged_application", | 13 "//mojo/public/python:packaged_application", |
22 "//mojo/public/python:packaged_bindings", | 14 "//mojo/public/python:packaged_bindings", |
15 "//mojo/python:packaged_utils", | |
16 "//mojo/services/network/public/interfaces", | |
17 "//services/http_server/public", | |
23 ] | 18 ] |
19 debug = true | |
24 datadeps = [ | 20 datadeps = [ |
21 "//mojo/public/python:mojo_system", | |
qsr
2015/02/25 15:34:07
I'm surprised you need this.
blundell
2015/02/26 13:29:52
Removed. I had thought I needed it from looking at
| |
25 "//services/python/content_handler", | 22 "//services/python/content_handler", |
26 ] | 23 ] |
27 } | 24 } |
OLD | NEW |