Chromium Code Reviews| 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 "renderer_facade_proxy.cc", | |
|
nicholss
2017/05/15 15:49:40
Please also add renderer_facade.h
| |
| 55 "renderer_facade_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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 140 ] | 142 ] |
| 141 | 143 |
| 142 deps = [ | 144 deps = [ |
| 143 ":client", | 145 ":client", |
| 144 "//remoting/proto", | 146 "//remoting/proto", |
| 145 "//testing/gmock", | 147 "//testing/gmock", |
| 146 "//testing/gtest", | 148 "//testing/gtest", |
| 147 "//third_party/webrtc/base:rtc_base_approved", | 149 "//third_party/webrtc/base:rtc_base_approved", |
| 148 ] | 150 ] |
| 149 } | 151 } |
| OLD | NEW |