| 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("test_apps") { |
| 8 deps = [ |
| 9 ":echo_service_interface", |
| 10 ":pingpong_service_interface", |
| 11 "//mojo/dart/apptests/test_apps/echo", |
| 12 "//mojo/dart/apptests/test_apps/pingpong", |
| 13 "//mojo/dart/apptests/test_apps/pingpong_target", |
| 14 ] |
| 15 } |
| 16 |
| 7 mojom("echo_service_interface") { | 17 mojom("echo_service_interface") { |
| 8 sources = [ | 18 sources = [ |
| 9 "interfaces/echo_service.mojom", | 19 "interfaces/echo_service.mojom", |
| 10 ] | 20 ] |
| 11 } | 21 } |
| 12 | 22 |
| 13 mojom("pingpong_service_interface") { | 23 mojom("pingpong_service_interface") { |
| 14 sources = [ | 24 sources = [ |
| 15 "interfaces/pingpong_service.mojom", | 25 "interfaces/pingpong_service.mojom", |
| 16 ] | 26 ] |
| 17 } | 27 } |
| OLD | NEW |