| 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 source_set("js_application_test_base") { | 7 source_set("js_application_test_base") { |
| 8 testonly = true | 8 testonly = true |
| 9 | 9 |
| 10 sources = [ | 10 sources = [ |
| 11 "js_application_test_base.cc", | 11 "js_application_test_base.cc", |
| 12 "js_application_test_base.h", | 12 "js_application_test_base.h", |
| 13 ] | 13 ] |
| 14 | 14 |
| 15 deps = [ | 15 deps = [ |
| 16 "//base", | 16 "//base", |
| 17 "//mojo/application", | 17 "//mojo/application", |
| 18 "//mojo/application:test_support", | 18 "//mojo/application:test_support", |
| 19 ] | 19 ] |
| 20 } | 20 } |
| 21 | 21 |
| 22 mojom("echo_service") { | 22 mojom("echo_service") { |
| 23 sources = [ "echo_service.mojom" ] | 23 sources = [ |
| 24 "echo_service.mojom", |
| 25 ] |
| 24 } | 26 } |
| 25 | 27 |
| 26 mojom("pingpong_service") { | 28 mojom("pingpong_service") { |
| 27 sources = [ "pingpong_service.mojom" ] | 29 sources = [ |
| 30 "pingpong_service.mojom", |
| 31 ] |
| 28 } | 32 } |
| 29 | |
| OLD | NEW |