chromium/third_party/win_virtual_display/controller/BUILD.gn

# Copyright 2023 The Chromium Authors
# Use of this source code is governed by a BSD - style license that can be
# found in the LICENSE file.

static_library("controller") {
  testonly = true
  deps = [
    "//base",
    "//base/win:base_win_buildflags",
    "//third_party/win_virtual_display/driver/public",
  ]
  sources = [
    "display_driver_controller.cc",
    "display_driver_controller.h",
  ]
  libs = [
    "ntdll.lib",
    "onecore.lib",
  ]
}

executable("display_driver_controller_executable") {
  sources = [ "display_driver_controller_main.cc" ]
  testonly = true
  deps = [
    ":controller",
    "//base",
  ]
}