| OLD | NEW |
| 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("//mojo/public/tools/bindings/mojom.gni") | 5 import("//mojo/public/tools/bindings/mojom.gni") |
| 6 | 6 |
| 7 group("echo") { | 7 group("echo") { |
| 8 deps = [ | 8 deps = [ |
| 9 ":client", | 9 ":client", |
| 10 ":service" | 10 ":service" |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 "//mojo/public/cpp/bindings", | 35 "//mojo/public/cpp/bindings", |
| 36 "//mojo/public/cpp/utility", | 36 "//mojo/public/cpp/utility", |
| 37 ] | 37 ] |
| 38 | 38 |
| 39 sources = [ "echo_service.cc" ] | 39 sources = [ "echo_service.cc" ] |
| 40 } | 40 } |
| 41 | 41 |
| 42 mojom("bindings") { | 42 mojom("bindings") { |
| 43 sources = [ "echo_service.mojom" ] | 43 sources = [ "echo_service.mojom" ] |
| 44 } | 44 } |
| OLD | NEW |