910e62b5创建于 1月15日历史提交
# Copyright 2019 The Chromium Authors
# 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",
  ]
}