| # Copyright 2021 The Chromium Authors. All rights reserved. |
| # Use of this source code is governed by a BSD-style license that can be |
| # found in the LICENSE file. |
| |
| import("//build/config/chromeos/ui_mode.gni") |
| |
| assert(is_chromeos_ash, "Non-Chrome-OS builds must not depend on //chromeos") |
| |
| component("image_burner") { |
| output_name = "chromeos_image_burner" |
| defines = [ "IS_CHROMEOS_DBUS_IMAGE_BURNER_IMPL" ] |
| deps = [ |
| "//base", |
| "//chromeos/dbus/common", |
| "//dbus", |
| ] |
| sources = [ |
| "fake_image_burner_client.cc", |
| "fake_image_burner_client.h", |
| "image_burner_client.cc", |
| "image_burner_client.h", |
| ] |
| } |