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