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

Side by Side Diff: mojo/dart/apptests/test_apps/BUILD.gn

Issue 1648803006: Expose Service Describer in Dart mojo package (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Address zra's feedback Created 4 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 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") { 7 group("test_apps") {
8 deps = [ 8 deps = [
9 ":echo_service_interface", 9 ":echo_service_interface",
10 ":pingpong_service_interface", 10 ":pingpong_service_interface",
11 "//mojo/dart/apptests/test_apps/echo", 11 "//mojo/dart/apptests/test_apps/echo",
12 "//mojo/dart/apptests/test_apps/echo_with_service_describer",
12 "//mojo/dart/apptests/test_apps/pingpong", 13 "//mojo/dart/apptests/test_apps/pingpong",
13 "//mojo/dart/apptests/test_apps/pingpong_target", 14 "//mojo/dart/apptests/test_apps/pingpong_target",
14 ] 15 ]
15 } 16 }
16 17
17 mojom("echo_service_interface") { 18 mojom("echo_service_interface") {
18 sources = [ 19 sources = [
19 "interfaces/echo_service.mojom", 20 "interfaces/echo_service.mojom",
20 ] 21 ]
21 } 22 }
22 23
23 mojom("pingpong_service_interface") { 24 mojom("pingpong_service_interface") {
24 sources = [ 25 sources = [
25 "interfaces/pingpong_service.mojom", 26 "interfaces/pingpong_service.mojom",
26 ] 27 ]
27 } 28 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698