blob: 093a9cfd799e4cdd3fbe9beddec74b10ceebd623 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# Copyright 2019 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.
assert(is_chromeos, "Non-ChromeOS builds cannot depend on //chromeos")
component("mojo_bootstrap") {
sources = [
"pending_connection_manager.cc",
"pending_connection_manager.h",
]
deps = [ "//base" ]
defines = [ "IS_MOJO_BOOTSTRAP_IMPL" ]
}
source_set("unit_tests") {
testonly = true
sources = [ "pending_connection_manager_unittest.cc" ]
deps = [
":mojo_bootstrap",
"//base/test:test_support",
"//testing/gtest",
]
}
|