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 group("python") { |
8 testonly = true | 8 testonly = true |
9 deps = [ | 9 deps = [ |
10 ":python_example_service", | 10 ":python_example_service", |
11 ] | 11 ] |
12 } | 12 } |
13 | 13 |
14 python_packaged_application("python_example_service") { | 14 python_packaged_application("python_example_service") { |
15 sources = [ | 15 sources = [ |
16 "__mojo__.py", | 16 "__mojo__.py", |
17 ] | 17 ] |
18 deps = [ | 18 deps = [ |
19 "//examples/apptest:bindings", | 19 "//examples/apptest:bindings", |
20 "//mojo/public/interfaces/application", | 20 "//mojo/public/interfaces/application", |
21 "//mojo/public/python:packaged_bindings", | 21 "//mojo/public/python:packaged_bindings", |
22 ] | 22 ] |
23 datadeps = [ | 23 datadeps = [ |
24 "//mojo/python/content_handler", | 24 "//services/python/content_handler", |
25 ] | 25 ] |
26 } | 26 } |
OLD | NEW |