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

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

Issue 728783003: Add infrastructure to run tests on android. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Use file_hash Created 6 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 # GYP version: mojo/edk/mojo_edk.gyp:mojo_common_test_support 5 # GYP version: mojo/edk/mojo_edk.gyp:mojo_common_test_support
6 source_set("test_support") { 6 source_set("test_support") {
7 testonly = true 7 testonly = true
8 sources = [ 8 sources = [
9 "multiprocess_test_helper.cc",
10 "multiprocess_test_helper.h",
11 "test_utils.h", 9 "test_utils.h",
12 "test_utils_posix.cc", 10 "test_utils_posix.cc",
13 "test_utils_win.cc", 11 "test_utils_win.cc",
14 ] 12 ]
15 13
14 if (!is_android) {
15 sources += [
16 "multiprocess_test_helper.cc",
17 "multiprocess_test_helper.h",
18 ]
19 }
20
16 deps = [ 21 deps = [
17 "//base", 22 "//base",
18 "//base/test:test_support", 23 "//base/test:test_support",
19 "//mojo/edk/system", 24 "//mojo/edk/system",
20 "//testing/gtest", 25 "//testing/gtest",
21 ] 26 ]
22 } 27 }
23 28
24 # GYP version: mojo/edk/mojo_edk.gyp:mojo_run_all_unittests 29 # GYP version: mojo/edk/mojo_edk.gyp:mojo_run_all_unittests
25 source_set("run_all_unittests") { 30 source_set("run_all_unittests") {
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 "//base", 63 "//base",
59 "//base/test:test_support", 64 "//base/test:test_support",
60 "//mojo/public/c/test_support", 65 "//mojo/public/c/test_support",
61 ] 66 ]
62 67
63 sources = [ 68 sources = [
64 "test_support_impl.cc", 69 "test_support_impl.cc",
65 "test_support_impl.h", 70 "test_support_impl.h",
66 ] 71 ]
67 } 72 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698