| OLD | NEW |
| (Empty) | |
| 1 # Copyright 2017 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 source_set("ui") { |
| 6 sources = [ |
| 7 "desktop_viewport.cc", |
| 8 "desktop_viewport.h", |
| 9 "direct_input_strategy.cc", |
| 10 "direct_input_strategy.h", |
| 11 "fling_animation.cc", |
| 12 "fling_animation.h", |
| 13 "fling_tracker.cc", |
| 14 "fling_tracker.h", |
| 15 "gesture_interpreter.cc", |
| 16 "gesture_interpreter.h", |
| 17 "input_strategy.h", |
| 18 "view_matrix.cc", |
| 19 "view_matrix.h", |
| 20 ] |
| 21 |
| 22 public_deps = [ |
| 23 "//remoting/proto", |
| 24 "//third_party/webrtc/base:rtc_base_approved", |
| 25 ] |
| 26 } |
| 27 |
| 28 source_set("unit_tests") { |
| 29 testonly = true |
| 30 |
| 31 sources = [ |
| 32 "desktop_viewport_unittest.cc", |
| 33 "fling_animation_unittest.cc", |
| 34 ] |
| 35 |
| 36 configs += [ "//remoting/build/config:version" ] |
| 37 |
| 38 deps = [ |
| 39 ":ui", |
| 40 "//testing/gmock", |
| 41 "//testing/gtest", |
| 42 ] |
| 43 } |
| OLD | NEW |