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

Side by Side Diff: mojo/public/cpp/bindings/tests/BUILD.gn

Issue 1406013005: Split the //mojo/public/cpp/test_support:test_utils target. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 1 month 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_application.gni") 5 import("../../../mojo_application.gni")
6 import("../../../mojo_sdk.gni") 6 import("../../../mojo_sdk.gni")
7 import("../../../mojo.gni") 7 import("../../../mojo.gni")
8 8
9 mojo_sdk_source_set("tests") { 9 mojo_sdk_source_set("tests") {
10 testonly = true 10 testonly = true
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 deps = [ 42 deps = [
43 ":mojo_public_bindings_test_utils", 43 ":mojo_public_bindings_test_utils",
44 "//testing/gtest", 44 "//testing/gtest",
45 ] 45 ]
46 46
47 mojo_sdk_deps = [ 47 mojo_sdk_deps = [
48 "mojo/public/cpp/bindings", 48 "mojo/public/cpp/bindings",
49 "mojo/public/cpp/bindings:callback", 49 "mojo/public/cpp/bindings:callback",
50 "mojo/public/cpp/environment:standalone", 50 "mojo/public/cpp/environment:standalone",
51 "mojo/public/cpp/system", 51 "mojo/public/cpp/system",
52 "mojo/public/cpp/test_support",
52 "mojo/public/cpp/test_support:test_utils", 53 "mojo/public/cpp/test_support:test_utils",
53 "mojo/public/cpp/utility", 54 "mojo/public/cpp/utility",
54 "mojo/public/interfaces/bindings/tests:test_interfaces", 55 "mojo/public/interfaces/bindings/tests:test_interfaces",
55 ] 56 ]
56 } 57 }
57 58
58 mojo_sdk_source_set("perftests") { 59 mojo_sdk_source_set("perftests") {
59 testonly = true 60 testonly = true
60 61
61 sources = [ 62 sources = [
62 "bindings_perftest.cc", 63 "bindings_perftest.cc",
63 ] 64 ]
64 65
65 deps = [ 66 deps = [
66 "//testing/gtest", 67 "//testing/gtest",
67 ] 68 ]
68 69
69 mojo_sdk_deps = [ 70 mojo_sdk_deps = [
70 "mojo/public/cpp/bindings", 71 "mojo/public/cpp/bindings",
71 "mojo/public/cpp/bindings:callback", 72 "mojo/public/cpp/bindings:callback",
72 "mojo/public/cpp/environment:standalone", 73 "mojo/public/cpp/environment:standalone",
73 "mojo/public/cpp/system", 74 "mojo/public/cpp/system",
74 "mojo/public/cpp/test_support:test_utils", 75 "mojo/public/cpp/test_support",
75 "mojo/public/cpp/utility", 76 "mojo/public/cpp/utility",
76 "mojo/public/interfaces/bindings/tests:test_interfaces", 77 "mojo/public/interfaces/bindings/tests:test_interfaces",
77 ] 78 ]
78 } 79 }
79 80
80 mojo_sdk_source_set("mojo_public_bindings_test_utils") { 81 mojo_sdk_source_set("mojo_public_bindings_test_utils") {
81 sources = [ 82 sources = [
82 "validation_test_input_parser.cc", 83 "validation_test_input_parser.cc",
83 "validation_test_input_parser.h", 84 "validation_test_input_parser.h",
84 ] 85 ]
(...skipping 25 matching lines...) Expand all
110 "mojo/public/interfaces/bindings/tests:versioning_test_service_interfaces" , 111 "mojo/public/interfaces/bindings/tests:versioning_test_service_interfaces" ,
111 ] 112 ]
112 } 113 }
113 114
114 mojo_native_application("versioning_apptests") { 115 mojo_native_application("versioning_apptests") {
115 testonly = true 116 testonly = true
116 117
117 deps = [ 118 deps = [
118 ":versioning_apptest_source_set", 119 ":versioning_apptest_source_set",
119 ] 120 ]
120 data_deps = [ ":versioning_test_service" ] 121 data_deps = [
122 ":versioning_test_service",
123 ]
121 } 124 }
122 125
123 mojo_sdk_source_set("versioning_apptest_source_set") { 126 mojo_sdk_source_set("versioning_apptest_source_set") {
124 testonly = true 127 testonly = true
125 visibility = [ ":*" ] 128 visibility = [ ":*" ]
126 129
127 sources = [ 130 sources = [
128 "versioning_apptest.cc", 131 "versioning_apptest.cc",
129 ] 132 ]
130 133
131 mojo_sdk_deps = [ 134 mojo_sdk_deps = [
132 "mojo/public/cpp/application:standalone", 135 "mojo/public/cpp/application:standalone",
133 "mojo/public/cpp/application:test_support_standalone", 136 "mojo/public/cpp/application:test_support_standalone",
134 "mojo/public/cpp/bindings", 137 "mojo/public/cpp/bindings",
135 "mojo/public/cpp/system", 138 "mojo/public/cpp/system",
136 "mojo/public/interfaces/bindings/tests:versioning_test_client_interfaces", 139 "mojo/public/interfaces/bindings/tests:versioning_test_client_interfaces",
137 ] 140 ]
138 } 141 }
139 } 142 }
OLDNEW
« no previous file with comments | « mojo/public/c/system/tests/BUILD.gn ('k') | mojo/public/cpp/bindings/tests/binding_callback_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698