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

Side by Side Diff: mojo/edk/embedder/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 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 source_set("embedder") { 5 source_set("embedder") {
6 # This isn't really a standalone target; it must be linked into the 6 # This isn't really a standalone target; it must be linked into the
7 # mojo_system_impl component. 7 # mojo_system_impl component.
8 visibility = [ "//mojo/edk/system" ] 8 visibility = [ "//mojo/edk/system" ]
9 9
10 sources = [ 10 sources = [
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 configs += [ "//mojo/edk/system:system_config" ] 76 configs += [ "//mojo/edk/system:system_config" ]
77 77
78 deps = [ "//base" ] 78 deps = [ "//base" ]
79 } 79 }
80 80
81 source_set("embedder_unittests") { 81 source_set("embedder_unittests") {
82 testonly = true 82 testonly = true
83 visibility = [ "//mojo/edk/system:mojo_system_unittests" ] 83 visibility = [ "//mojo/edk/system:mojo_system_unittests" ]
84 84
85 sources = [ 85 sources = [
86 "embedder_test_util.cc",
87 "embedder_test_util.h",
86 "embedder_unittest.cc", 88 "embedder_unittest.cc",
87 "platform_channel_pair_posix_unittest.cc", 89 "platform_channel_pair_posix_unittest.cc",
88 "simple_platform_shared_buffer_unittest.cc", 90 "simple_platform_shared_buffer_unittest.cc",
89 ] 91 ]
90 92
93 if (!is_android) {
94 sources += [
95 "embedder_multiprocess_unittest.cc",
96 ]
97 }
98
91 deps = [ 99 deps = [
92 "//base", 100 "//base",
93 "//base/test:test_support", 101 "//base/test:test_support",
94 "//mojo/edk/test:test_support", 102 "//mojo/edk/test:test_support",
95 "//mojo/edk/system", 103 "//mojo/edk/system",
96 "//testing/gtest", 104 "//testing/gtest",
97 ] 105 ]
98 } 106 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698