Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(193)

Unified Diff: remoting/client/plugin/BUILD.gn

Issue 1010803014: Fixing building of remoting_unittests_apk target. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Covering BUILD.gn as well. Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « remoting/client/BUILD.gn ('k') | remoting/remoting_test.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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",
+ ]
+}
« no previous file with comments | « remoting/client/BUILD.gn ('k') | remoting/remoting_test.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698