Avi Drissman | e4714ce9 | 2022-09-12 21:41:58 | [diff] [blame] | 1 | # Copyright 2019 The Chromium Authors |
Luum Habtemariam | 89841b3 | 2019-04-15 18:16:14 | [diff] [blame] | 2 | # Use of this source code is governed by a BSD-style license that can be |
| 3 | # found in the LICENSE file. |
| 4 | |
Yeunjoo Choi | 699f91f | 2022-04-12 00:57:59 | [diff] [blame] | 5 | import("//build/config/ui.gni") |
| 6 | |
| 7 | assert(is_chromeos_ash, "Non-ChromeOS builds cannot depend on //chromeos") |
Luum Habtemariam | 89841b3 | 2019-04-15 18:16:14 | [diff] [blame] | 8 | |
| 9 | component("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 | } |