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

Side by Side Diff: mojo/shell/tests/BUILD.gn

Issue 1758633002: Convert Connect apptest to a unittest (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@25tests
Patch Set: . Created 4 years, 9 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 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 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/mojo_application.gni") 5 import("//mojo/public/mojo_application.gni")
6 import("//mojo/public/mojo_application_manifest.gni") 6 import("//mojo/public/mojo_application_manifest.gni")
7 import("//mojo/public/tools/bindings/mojom.gni") 7 import("//mojo/public/tools/bindings/mojom.gni")
8 import("//testing/test.gni") 8 import("//testing/test.gni")
9 9
10 group("tests") { 10 group("tests") {
11 testonly = true 11 testonly = true
12 deps = [ 12 deps = [
13 ":apptests", 13 ":apptests",
14 ":mojo_shell_unittests", 14 ":mojo_shell_unittests",
15 "//mojo/shell/tests/connect",
15 ] 16 ]
16 } 17 }
17 18
18 source_set("test_support") { 19 source_set("test_support") {
19 testonly = true 20 testonly = true
20 sources = [ 21 sources = [
21 "capability_filter_test.cc", 22 "capability_filter_test.cc",
22 "capability_filter_test.h", 23 "capability_filter_test.h",
23 ] 24 ]
24 25
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 ] 66 ]
66 } 67 }
67 68
68 mojo_native_application("apptests") { 69 mojo_native_application("apptests") {
69 output_name = "mojo_shell_apptests" 70 output_name = "mojo_shell_apptests"
70 testonly = true 71 testonly = true
71 72
72 deps = [ 73 deps = [
73 "//mojo/shell/tests/application_manager", 74 "//mojo/shell/tests/application_manager",
74 ] 75 ]
75
76 data_deps = [
77 "//mojo/shell/tests/connect",
78 ]
79 } 76 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698