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

Side by Side Diff: mojo/public/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
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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("//third_party/cython/rules.gni") 5 import("//third_party/cython/rules.gni")
6 import("rules.gni")
6 7
7 group("python") { 8 group("python") {
8 deps = [ 9 deps = [
9 ":bindings", 10 ":bindings",
10 ":mojo_system", 11 ":mojo_system",
11 ":mojo_system_impl", 12 ":mojo_system_impl",
12 ] 13 ]
13 } 14 }
14 15
15 # GYP version: mojo.gyp:mojo_python_system 16 # GYP version: mojo.gyp:mojo_python_system
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 "mojo_bindings/reflection.py", 90 "mojo_bindings/reflection.py",
90 "mojo_bindings/serialization.py", 91 "mojo_bindings/serialization.py",
91 ] 92 ]
92 outputs = [ 93 outputs = [
93 "$root_out_dir/python/mojo_bindings/{{source_file_part}}", 94 "$root_out_dir/python/mojo_bindings/{{source_file_part}}",
94 ] 95 ]
95 deps = [ 96 deps = [
96 ":mojo_system", 97 ":mojo_system",
97 ] 98 ]
98 } 99 }
100
101 python_package("packaged_bindings") {
102 sources = [
103 "mojo_bindings/__init__.py",
104 "mojo_bindings/descriptor.py",
105 "mojo_bindings/messaging.py",
106 "mojo_bindings/promise.py",
107 "mojo_bindings/reflection.py",
108 "mojo_bindings/serialization.py",
109 ]
110 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698