BUILD.gn 597 B

123456789101112131415161718192021222324
  1. # Copyright 2019 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. import("//third_party/protobuf/proto_library.gni")
  5. assert(is_chromeos,
  6. "Non-Chrome-OS or Lacros builds must not depend on //chromeos")
  7. component("permission_broker") {
  8. defines = [ "IS_PERMISSION_BROKER_IMPL" ]
  9. deps = [
  10. "//base",
  11. "//dbus",
  12. ]
  13. sources = [
  14. "fake_permission_broker_client.cc",
  15. "fake_permission_broker_client.h",
  16. "permission_broker_client.cc",
  17. "permission_broker_client.h",
  18. ]
  19. }