| 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 group("go") { | 7 group("go") { |
| 8 assert(go_build_tool != "") | 8 assert(go_build_tool != "") |
| 9 deps = [ | 9 deps = [ |
| 10 ":go_echo_client", | 10 ":go_echo_client", |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 deps = [ | 30 deps = [ |
| 31 "//examples/echo:bindings", | 31 "//examples/echo:bindings", |
| 32 ] | 32 ] |
| 33 } | 33 } |
| 34 | 34 |
| 35 go_mojo_application("go_http_handler") { | 35 go_mojo_application("go_http_handler") { |
| 36 sources = [ | 36 sources = [ |
| 37 "http_handler.go", | 37 "http_handler.go", |
| 38 ] | 38 ] |
| 39 deps = [ | 39 deps = [ |
| 40 "//mojo/services/http_server/interfaces", |
| 40 "//mojo/services/network/public/interfaces", | 41 "//mojo/services/network/public/interfaces", |
| 41 ] | 42 ] |
| 42 } | 43 } |
| 43 | 44 |
| 44 go_mojo_application("go_http_server") { | 45 go_mojo_application("go_http_server") { |
| 45 sources = [ | 46 sources = [ |
| 46 "http_server.go", | 47 "http_server.go", |
| 47 ] | 48 ] |
| 48 deps = [ | 49 deps = [ |
| 49 "//mojo/services/network/public/interfaces", | 50 "//mojo/services/network/public/interfaces", |
| 50 ] | 51 ] |
| 51 } | 52 } |
| OLD | NEW |