Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(517)

Side by Side Diff: examples/python/BUILD.gn

Issue 796373006: Content handler for python. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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 }
OLDNEW
« no previous file with comments | « examples/BUILD.gn ('k') | examples/python/__mojo__.py » ('j') | examples/python/__mojo__.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698