| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 static_library("client") { | 5 static_library("client") { |
| 6 # Disabled the source filters because there are _mac files that need to | 6 # Disabled the source filters because there are _mac files that need to |
| 7 # be compiled on all platforms. | 7 # be compiled on all platforms. |
| 8 set_sources_assignment_filter([]) | 8 set_sources_assignment_filter([]) |
| 9 | 9 |
| 10 sources = [ | 10 sources = [ |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 "cursor_shape_stub_proxy.cc", | 24 "cursor_shape_stub_proxy.cc", |
| 25 "cursor_shape_stub_proxy.h", | 25 "cursor_shape_stub_proxy.h", |
| 26 "desktop_viewport.cc", | 26 "desktop_viewport.cc", |
| 27 "desktop_viewport.h", | 27 "desktop_viewport.h", |
| 28 "direct_input_strategy.cc", | 28 "direct_input_strategy.cc", |
| 29 "direct_input_strategy.h", | 29 "direct_input_strategy.h", |
| 30 "dual_buffer_frame_consumer.cc", | 30 "dual_buffer_frame_consumer.cc", |
| 31 "dual_buffer_frame_consumer.h", | 31 "dual_buffer_frame_consumer.h", |
| 32 "empty_cursor_filter.cc", | 32 "empty_cursor_filter.cc", |
| 33 "empty_cursor_filter.h", | 33 "empty_cursor_filter.h", |
| 34 "fling_animation.cc", |
| 35 "fling_animation.h", |
| 36 "fling_tracker.cc", |
| 37 "fling_tracker.h", |
| 34 "gesture_interpreter.cc", | 38 "gesture_interpreter.cc", |
| 35 "gesture_interpreter.h", | 39 "gesture_interpreter.h", |
| 36 "host_experiment_sender.cc", | 40 "host_experiment_sender.cc", |
| 37 "host_experiment_sender.h", | 41 "host_experiment_sender.h", |
| 38 "key_event_mapper.cc", | 42 "key_event_mapper.cc", |
| 39 "key_event_mapper.h", | 43 "key_event_mapper.h", |
| 40 "native_device_keymap.cc", | 44 "native_device_keymap.cc", |
| 41 "native_device_keymap.h", | 45 "native_device_keymap.h", |
| 42 "normalizing_input_filter_cros.cc", | 46 "normalizing_input_filter_cros.cc", |
| 43 "normalizing_input_filter_cros.h", | 47 "normalizing_input_filter_cros.h", |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 ] | 134 ] |
| 131 | 135 |
| 132 deps = [ | 136 deps = [ |
| 133 ":client", | 137 ":client", |
| 134 "//remoting/proto", | 138 "//remoting/proto", |
| 135 "//testing/gmock", | 139 "//testing/gmock", |
| 136 "//testing/gtest", | 140 "//testing/gtest", |
| 137 "//third_party/webrtc/base:rtc_base_approved", | 141 "//third_party/webrtc/base:rtc_base_approved", |
| 138 ] | 142 ] |
| 139 } | 143 } |
| OLD | NEW |