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

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 ":base", 10 ":base",
10 ":bindings", 11 ":bindings",
11 ":system", 12 ":system",
12 ":system_impl", 13 ":system_impl",
13 ] 14 ]
14 } 15 }
15 16
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 "mojo/bindings/serialization.py", 103 "mojo/bindings/serialization.py",
103 ] 104 ]
104 outputs = [ 105 outputs = [
105 "$root_out_dir/python/mojo/bindings/{{source_file_part}}", 106 "$root_out_dir/python/mojo/bindings/{{source_file_part}}",
106 ] 107 ]
107 deps = [ 108 deps = [
108 ":base", 109 ":base",
109 ":system", 110 ":system",
110 ] 111 ]
111 } 112 }
113
114 python_package("packaged_bindings") {
115 sources = [
116 "mojo/__init__.py",
117 "mojo/bindings/__init__.py",
118 "mojo/bindings/descriptor.py",
119 "mojo/bindings/messaging.py",
120 "mojo/bindings/promise.py",
121 "mojo/bindings/reflection.py",
122 "mojo/bindings/serialization.py",
123 ]
124 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698