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

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

Issue 1347783002: Add our own (mojo::util::)ScopedFILE and replace uses of base::ScopedFILE with 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 "test_io_thread.cc", 16 "test_io_thread.cc",
17 "test_io_thread.h", 17 "test_io_thread.h",
18 "test_utils.h", 18 "test_utils.h",
19 "test_utils_posix.cc", 19 "test_utils_posix.cc",
20 "test_utils_win.cc", 20 "test_utils_win.cc",
21 ] 21 ]
22 22
23 deps = [ 23 deps = [
24 "//base", 24 "//base",
25 "//base/test:test_support", 25 "//base/test:test_support",
26 "//testing/gtest", 26 "//testing/gtest",
27 ] 27 ]
28 28
29 mojo_edk_deps = [ "mojo/edk/system" ] 29 mojo_edk_deps = [
30 "mojo/edk/system",
31 "mojo/edk/util",
32 ]
30 33
31 mojo_sdk_public_deps = [ "mojo/public/cpp/system" ] 34 mojo_sdk_public_deps = [ "mojo/public/cpp/system" ]
32 } 35 }
33 36
34 mojo_edk_source_set("run_all_unittests") { 37 mojo_edk_source_set("run_all_unittests") {
35 testonly = true 38 testonly = true
36 sources = [ 39 sources = [
37 "run_all_unittests.cc", 40 "run_all_unittests.cc",
38 ] 41 ]
39 42
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
155 "../../public/cpp/utility/tests", 158 "../../public/cpp/utility/tests",
156 ] 159 ]
157 } 160 }
158 161
159 test("mojo_system_impl_private_unittests") { 162 test("mojo_system_impl_private_unittests") {
160 deps = [ 163 deps = [
161 ":run_all_unittests", 164 ":run_all_unittests",
162 "../../public/platform/native:system_impl_private_tests", 165 "../../public/platform/native:system_impl_private_tests",
163 ] 166 ]
164 } 167 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698