diff options
Diffstat (limited to 'device/core/BUILD.gn')
-rw-r--r-- | device/core/BUILD.gn | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/device/core/BUILD.gn b/device/core/BUILD.gn index b7e6ac2..9aaf280 100644 --- a/device/core/BUILD.gn +++ b/device/core/BUILD.gn @@ -24,3 +24,18 @@ component("core") { libs = [ "setupapi.lib" ] } } + +source_set("mocks") { + testonly = true + + sources = [ + "mock_device_client.cc", + "mock_device_client.h", + ] + + deps = [ + ":core", + "//device/hid:mocks", + "//device/usb:mocks", + ] +} |