| 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 = [ |
| 11 "audio_consumer.h", | 11 "audio_consumer.h", |
| 12 "audio_player.cc", | 12 "audio_player.cc", |
| 13 "audio_player.h", | 13 "audio_player.h", |
| 14 "audio_player_android.cc", |
| 15 "audio_player_android.h", |
| 14 "chromoting_client.cc", | 16 "chromoting_client.cc", |
| 15 "chromoting_client.h", | 17 "chromoting_client.h", |
| 16 "client_context.cc", | 18 "client_context.cc", |
| 17 "client_context.h", | 19 "client_context.h", |
| 18 "client_status_logger.cc", | 20 "client_status_logger.cc", |
| 19 "client_status_logger.h", | 21 "client_status_logger.h", |
| 20 "client_telemetry_logger.cc", | 22 "client_telemetry_logger.cc", |
| 21 "client_telemetry_logger.h", | 23 "client_telemetry_logger.h", |
| 22 "client_user_interface.h", | 24 "client_user_interface.h", |
| 23 "cursor_shape_stub_proxy.cc", | 25 "cursor_shape_stub_proxy.cc", |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 ] | 107 ] |
| 106 | 108 |
| 107 deps = [ | 109 deps = [ |
| 108 ":client", | 110 ":client", |
| 109 "//remoting/proto", | 111 "//remoting/proto", |
| 110 "//testing/gmock", | 112 "//testing/gmock", |
| 111 "//testing/gtest", | 113 "//testing/gtest", |
| 112 "//third_party/webrtc/base:rtc_base_approved", | 114 "//third_party/webrtc/base:rtc_base_approved", |
| 113 ] | 115 ] |
| 114 } | 116 } |
| OLD | NEW |