BUILD.gn 537 B

1234567891011121314151617181920
  1. # Copyright 2021 The Chromium Authors. All rights reserved.
  2. # Use of this source code is governed by a BSD-style license that can be
  3. # found in the LICENSE file.
  4. assert(is_chromeos, "Non-Chrome-OS builds must not depend on //chromeos")
  5. component("init") {
  6. output_name = "chromeos_dbus_init"
  7. defines = [ "IS_CHROMEOS_DBUS_INIT_IMPL" ]
  8. deps = [
  9. "//base",
  10. "//chromeos/dbus/constants",
  11. "//dbus",
  12. ]
  13. sources = [
  14. "dbus_thread_manager_base.cc",
  15. "dbus_thread_manager_base.h",
  16. "initialize_dbus_client.h",
  17. ]
  18. }