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

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

Issue 2903623002: Moving input related classes to the input folder. (Closed)
Patch Set: Hide gesture code from nacl. Created 3 years, 7 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
Index: remoting/client/ui/BUILD.gn
diff --git a/remoting/client/ui/BUILD.gn b/remoting/client/ui/BUILD.gn
index 7c04c870ba6bd6fcacbc1aeaeee8685bc73ac8a7..25b3106631998fbcade71335607ef5727e43cf53 100644
--- a/remoting/client/ui/BUILD.gn
+++ b/remoting/client/ui/BUILD.gn
@@ -4,26 +4,14 @@
source_set("ui") {
sources = [
- "desktop_viewport.cc",
- "desktop_viewport.h",
- "direct_input_strategy.cc",
- "direct_input_strategy.h",
"fling_animation.cc",
"fling_animation.h",
"fling_tracker.cc",
"fling_tracker.h",
- "gesture_interpreter.cc",
- "gesture_interpreter.h",
- "input_strategy.h",
- "renderer_proxy.cc",
- "renderer_proxy.h",
- "trackpad_input_strategy.cc",
- "trackpad_input_strategy.h",
- "view_matrix.cc",
- "view_matrix.h",
]
deps = [
+ ":ui_manipulation",
"//remoting/client/display",
]
@@ -33,6 +21,22 @@ source_set("ui") {
]
}
+source_set("ui_manipulation") {
+ sources = [
+ "desktop_viewport.cc",
+ "desktop_viewport.h",
+ "view_matrix.cc",
+ "view_matrix.h",
+ ]
+
+ deps = []
+
+ public_deps = [
+ "//remoting/proto",
+ "//third_party/webrtc/base:rtc_base_approved",
+ ]
+}
+
source_set("unit_tests") {
testonly = true

Powered by Google App Engine
This is Rietveld 408576698