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

Side by Side Diff: mojo/BUILD.gn

Issue 2141083003: Add a perf test for async wait and fix a bug in mojo::RunLoop. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: oops Created 4 years, 5 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
« no previous file with comments | « no previous file | mojo/public/c/environment/tests/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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("//build/config/nacl/config.gni") 5 import("//build/config/nacl/config.gni")
6 import("//build/module_args/mojo.gni") 6 import("//build/module_args/mojo.gni")
7 import("//mojo/public/mojo.gni") 7 import("//mojo/public/mojo.gni")
8 import("//testing/test.gni") 8 import("//testing/test.gni")
9 9
10 declare_args() { 10 declare_args() {
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 ":mojo_public_c_system_unittests", 105 ":mojo_public_c_system_unittests",
106 ":mojo_public_cpp_application_unittests", 106 ":mojo_public_cpp_application_unittests",
107 ":mojo_public_cpp_bindings_unittests", 107 ":mojo_public_cpp_bindings_unittests",
108 ":mojo_public_cpp_environment_unittests", 108 ":mojo_public_cpp_environment_unittests",
109 ":mojo_public_cpp_system_unittests", 109 ":mojo_public_cpp_system_unittests",
110 ":mojo_public_cpp_utility_unittests", 110 ":mojo_public_cpp_utility_unittests",
111 111
112 # Perf tests: 112 # Perf tests:
113 ":mojo_public_c_system_perftests", 113 ":mojo_public_c_system_perftests",
114 ":mojo_public_cpp_bindings_perftests", 114 ":mojo_public_cpp_bindings_perftests",
115 ":mojo_public_cpp_environment_perftests",
115 ] 116 ]
116 } 117 }
117 118
118 # C unit tests: 119 # C unit tests:
119 120
120 test("mojo_public_c_bindings_unittests") { 121 test("mojo_public_c_bindings_unittests") {
121 deps = [ 122 deps = [
122 "//mojo/edk/test:run_all_unittests", 123 "//mojo/edk/test:run_all_unittests",
123 "//mojo/public/c/bindings/tests", 124 "//mojo/public/c/bindings/tests",
124 ] 125 ]
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
178 } 179 }
179 180
180 # C++ perf tests: 181 # C++ perf tests:
181 182
182 test("mojo_public_cpp_bindings_perftests") { 183 test("mojo_public_cpp_bindings_perftests") {
183 deps = [ 184 deps = [
184 "//mojo/edk/test:run_all_perftests", 185 "//mojo/edk/test:run_all_perftests",
185 "//mojo/public/cpp/bindings/tests:perftests", 186 "//mojo/public/cpp/bindings/tests:perftests",
186 ] 187 ]
187 } 188 }
189
190 test("mojo_public_cpp_environment_perftests") {
191 deps = [
192 "//mojo/edk/test:run_all_perftests",
193 "//mojo/public/cpp/environment/tests:perftests",
194 ]
195 }
OLDNEW
« no previous file with comments | « no previous file | mojo/public/c/environment/tests/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698