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

Side by Side Diff: mojo/edk/test/BUILD.gn

Issue 1361143004: EDK: Add a mojo::test::SimpleTestThread (and use it). (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 3 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 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_edk.gni") 5 import("../mojo_edk.gni")
6 import("../../public/mojo.gni") 6 import("../../public/mojo.gni")
7 import("//testing/test.gni") 7 import("//testing/test.gni")
8 8
9 mojo_edk_source_set("test_support") { 9 mojo_edk_source_set("test_support") {
10 testonly = true 10 testonly = true
11 sources = [ 11 sources = [
12 "multiprocess_test_helper.cc", 12 "multiprocess_test_helper.cc",
13 "multiprocess_test_helper.h", 13 "multiprocess_test_helper.h",
14 "scoped_ipc_support.cc", 14 "scoped_ipc_support.cc",
15 "scoped_ipc_support.h", 15 "scoped_ipc_support.h",
16 "scoped_test_dir.cc", 16 "scoped_test_dir.cc",
17 "scoped_test_dir.h", 17 "scoped_test_dir.h",
18 "simple_test_thread.cc",
19 "simple_test_thread.h",
18 "test_io_thread.cc", 20 "test_io_thread.cc",
19 "test_io_thread.h", 21 "test_io_thread.h",
20 "test_utils.h", 22 "test_utils.h",
21 "test_utils_posix.cc", 23 "test_utils_posix.cc",
22 ] 24 ]
23 25
24 deps = [ 26 deps = [
25 "//base", 27 "//base",
26 "//base/test:test_support", 28 "//base/test:test_support",
27 "//testing/gtest", 29 "//testing/gtest",
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
159 "../../public/cpp/utility/tests", 161 "../../public/cpp/utility/tests",
160 ] 162 ]
161 } 163 }
162 164
163 test("mojo_system_impl_private_unittests") { 165 test("mojo_system_impl_private_unittests") {
164 deps = [ 166 deps = [
165 ":run_all_unittests", 167 ":run_all_unittests",
166 "../../public/platform/native:system_impl_private_tests", 168 "../../public/platform/native:system_impl_private_tests",
167 ] 169 ]
168 } 170 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698