chromium/components/device_signals/core/common/win/BUILD.gn

# Copyright 2022 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("win") {
  public = [ "win_types.h" ]

  sources = [ "win_types.cc" ]

  deps = [ "//base" ]
}

source_set("unit_tests") {
  testonly = true
  sources = [ "win_types_unittest.cc" ]

  deps = [
    ":win",
    "//base",
    "//testing/gtest",
  ]
}