Index: remoting/client/plugin/BUILD.gn |
diff --git a/remoting/client/plugin/BUILD.gn b/remoting/client/plugin/BUILD.gn |
index 9594824dccc21b37188e81bee96da54f2c04bbeb..9fb1fe795c306296c8e3ae8a368375a3a820a383 100644 |
--- a/remoting/client/plugin/BUILD.gn |
+++ b/remoting/client/plugin/BUILD.gn |
@@ -40,3 +40,25 @@ source_set("plugin") { |
"//ui/events:dom4_keycode_converter", |
] |
} |
+ |
+source_set("unit_tests") { |
Łukasz Anforowicz
2015/03/24 17:10:23
The "unit_tests" target is mostly copied from remo
|
+ testonly = true |
+ |
+ sources = [ |
+ "empty_cursor_filter_unittest.cc", |
+ "normalizing_input_filter_mac_unittest.cc", |
+ "touch_input_scaler_unittest.cc", |
Łukasz Anforowicz
2015/03/24 17:10:23
touch_input_scaler_unittest.cc was present in gyp
|
+ ] |
+ |
+ if (is_chromeos) { |
+ sources += [ "normalizing_input_filter_cros_unittest.cc" ] |
+ } |
+ |
+ deps = [ |
+ ":plugin", |
+ "//remoting/proto", |
+ "//testing/gmock", |
+ "//testing/gtest", |
+ "//third_party/webrtc", |
+ ] |
+} |