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

Side by Side Diff: services/mojo_url_redirector/BUILD.gn

Issue 953353002: Add HTTP handler that redirects requests for Mojo apps (Closed) Base URL: https://github.com/domokit/mojo.git@python_data_pipe_utils
Patch Set: Created 5 years, 10 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 2015 The Chromium Authors. All rights reserved. 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 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("//mojo/public/python/rules.gni") 5 import("//mojo/public/python/rules.gni")
6 6
7 group("python") { 7 python_packaged_application("mojo_url_redirector") {
8 testonly = true
9 deps = [
10 ":python_example_service",
11 ]
12 }
13
14 python_packaged_application("python_example_service") {
15 sources = [ 8 sources = [
16 "__mojo__.py", 9 "__mojo__.py",
17 ] 10 ]
18 deps = [ 11 deps = [
19 "//examples/apptest:bindings",
20 "//mojo/public/interfaces/application", 12 "//mojo/public/interfaces/application",
21 "//mojo/public/python:packaged_application", 13 "//mojo/public/python:packaged_application",
22 "//mojo/public/python:packaged_bindings", 14 "//mojo/public/python:packaged_bindings",
15 "//mojo/python:packaged_utils",
16 "//mojo/services/network/public/interfaces",
17 "//services/http_server/public",
23 ] 18 ]
19 debug = true
24 datadeps = [ 20 datadeps = [
21 "//mojo/public/python:mojo_system",
qsr 2015/02/25 15:34:07 I'm surprised you need this.
blundell 2015/02/26 13:29:52 Removed. I had thought I needed it from looking at
25 "//services/python/content_handler", 22 "//services/python/content_handler",
26 ] 23 ]
27 } 24 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698