blob: 87b60e725175d50384ea43565b9d488633d8b0bd [file] [log] [blame]
Avi Drissmane4714ce92022-09-12 21:41:581# Copyright 2019 The Chromium Authors
Luum Habtemariam89841b32019-04-15 18:16:142# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
Yeunjoo Choi699f91f2022-04-12 00:57:595import("//build/config/ui.gni")
6
7assert(is_chromeos_ash, "Non-ChromeOS builds cannot depend on //chromeos")
Luum Habtemariam89841b32019-04-15 18:16:148
9component("cups_proxy") {
10 defines = [ "IS_CUPS_PROXY_IMPL" ]
11
12 deps = [
13 "//base",
14 "//dbus",
15 ]
16
17 sources = [
18 "cups_proxy_client.cc",
19 "cups_proxy_client.h",
20 "fake_cups_proxy_client.cc",
21 "fake_cups_proxy_client.h",
22 ]
23}