naiveproxy/mojo/edk/embedder/BUILD.gn
2018-08-11 05:35:24 +00:00

28 lines
635 B
Plaintext

# Copyright 2014 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
source_set("embedder_unittests") {
testonly = true
# TODO: Figure out why this visibility check fails on Android.
# visibility = [ "//mojo:mojo_unittests" ]
sources = [
"embedder_unittest.cc",
]
if (is_posix) {
sources += [ "platform_channel_pair_posix_unittest.cc" ]
}
deps = [
"//base",
"//base/test:test_support",
"//mojo/edk",
"//mojo/edk/system:test_utils",
"//mojo/edk/test:test_support",
"//testing/gtest",
]
}