mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-28 08:16:09 +03:00
28 lines
635 B
Plaintext
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",
|
||
|
]
|
||
|
}
|