blob: 8e66a996c2a0babc4220fd259ae05936e0a89e4b [file] [log] [blame]
Avi Drissmane4714ce92022-09-12 21:41:581# Copyright 2021 The Chromium Authors
Sergey Poromov43e73662021-02-04 20:53:202# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5import("//third_party/protobuf/proto_library.gni")
6
7assert(is_chromeos, "Non-ChromeOS builds cannot depend on //chromeos")
8
9component("dlp") {
10 defines = [ "IS_DLP_IMPL" ]
11
Sergey Poromov0e7c8382021-04-20 00:29:2912 public_deps = [
Sergey Poromov43e73662021-02-04 20:53:2013 ":dlp_proto",
14 "//base",
15 "//dbus",
16 ]
17
18 sources = [
19 "dlp_client.cc",
20 "dlp_client.h",
21 "fake_dlp_client.cc",
22 "fake_dlp_client.h",
23 ]
24}
25
26proto_library("dlp_proto") {
27 sources = [ "//third_party/cros_system_api/dbus/dlp/dlp_service.proto" ]
28
29 proto_out_dir = "chromeos/dbus/dlp"
30}