OLD | NEW |
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/go/rules.gni") | 5 import("//mojo/go/rules.gni") |
6 | 6 |
7 if (is_android) { | 7 if (is_android) { |
8 group("go") { | 8 group("go") { |
9 deps = [ | 9 deps = [ |
10 ":go_echo_client", | 10 ":go_echo_client", |
11 ":go_echo_server", | 11 ":go_echo_server", |
12 ":go_http_handler", | 12 ":go_http_handler", |
13 ":go_http_server", | 13 |
| 14 # TODO(rogulenko): Re-enable when the go bindings generator supports it. |
| 15 # ":go_http_server", |
14 ] | 16 ] |
15 } | 17 } |
16 | 18 |
17 go_mojo_application("go_echo_client") { | 19 go_mojo_application("go_echo_client") { |
18 sources = [ | 20 sources = [ |
19 "echo_client.go", | 21 "echo_client.go", |
20 ] | 22 ] |
21 deps = [ | 23 deps = [ |
22 "//examples/echo:bindings", | 24 "//examples/echo:bindings", |
23 ] | 25 ] |
(...skipping 19 matching lines...) Expand all Loading... |
43 | 45 |
44 go_mojo_application("go_http_server") { | 46 go_mojo_application("go_http_server") { |
45 sources = [ | 47 sources = [ |
46 "http_server.go", | 48 "http_server.go", |
47 ] | 49 ] |
48 deps = [ | 50 deps = [ |
49 "//mojo/services/network/public/interfaces", | 51 "//mojo/services/network/public/interfaces", |
50 ] | 52 ] |
51 } | 53 } |
52 } | 54 } |
OLD | NEW |