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

Side by Side Diff: services/js/test/BUILD.gn

Issue 773283006: Run gn format on all BUILD.gn files (gn version 306668) (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years 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 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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698