| 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 "native_device_keymap.cc", | 44 "native_device_keymap.cc", |
| 45 "native_device_keymap.h", | 45 "native_device_keymap.h", |
| 46 "normalizing_input_filter_cros.cc", | 46 "normalizing_input_filter_cros.cc", |
| 47 "normalizing_input_filter_cros.h", | 47 "normalizing_input_filter_cros.h", |
| 48 "normalizing_input_filter_mac.cc", | 48 "normalizing_input_filter_mac.cc", |
| 49 "normalizing_input_filter_mac.h", | 49 "normalizing_input_filter_mac.h", |
| 50 "normalizing_input_filter_win.cc", | 50 "normalizing_input_filter_win.cc", |
| 51 "normalizing_input_filter_win.h", | 51 "normalizing_input_filter_win.h", |
| 52 "queued_task_poster.cc", | 52 "queued_task_poster.cc", |
| 53 "queued_task_poster.h", | 53 "queued_task_poster.h", |
| 54 "render_stub_proxy.cc", |
| 55 "render_stub_proxy.h", |
| 54 "server_log_entry_client.cc", | 56 "server_log_entry_client.cc", |
| 55 "server_log_entry_client.h", | 57 "server_log_entry_client.h", |
| 56 "software_video_renderer.cc", | 58 "software_video_renderer.cc", |
| 57 "software_video_renderer.h", | 59 "software_video_renderer.h", |
| 58 "touch_input_scaler.cc", | 60 "touch_input_scaler.cc", |
| 59 "touch_input_scaler.h", | 61 "touch_input_scaler.h", |
| 60 "view_matrix.cc", | 62 "view_matrix.cc", |
| 61 "view_matrix.h", | 63 "view_matrix.h", |
| 62 ] | 64 ] |
| 63 set_sources_assignment_filter(sources_assignment_filter) | 65 set_sources_assignment_filter(sources_assignment_filter) |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 ] | 138 ] |
| 137 | 139 |
| 138 deps = [ | 140 deps = [ |
| 139 ":client", | 141 ":client", |
| 140 "//remoting/proto", | 142 "//remoting/proto", |
| 141 "//testing/gmock", | 143 "//testing/gmock", |
| 142 "//testing/gtest", | 144 "//testing/gtest", |
| 143 "//third_party/webrtc/base:rtc_base_approved", | 145 "//third_party/webrtc/base:rtc_base_approved", |
| 144 ] | 146 ] |
| 145 } | 147 } |
| OLD | NEW |