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