| 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", | |
| 12 "audio_player.cc", | 11 "audio_player.cc", |
| 13 "audio_player.h", | 12 "audio_player.h", |
| 14 "chromoting_client.cc", | 13 "chromoting_client.cc", |
| 15 "chromoting_client.h", | 14 "chromoting_client.h", |
| 16 "chromoting_session.cc", | 15 "chromoting_session.cc", |
| 17 "chromoting_session.h", | 16 "chromoting_session.h", |
| 18 "client_context.cc", | 17 "client_context.cc", |
| 19 "client_context.h", | 18 "client_context.h", |
| 20 "client_telemetry_logger.cc", | 19 "client_telemetry_logger.cc", |
| 21 "client_telemetry_logger.h", | 20 "client_telemetry_logger.h", |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 ] | 121 ] |
| 123 | 122 |
| 124 deps = [ | 123 deps = [ |
| 125 ":client", | 124 ":client", |
| 126 "//remoting/proto", | 125 "//remoting/proto", |
| 127 "//testing/gmock", | 126 "//testing/gmock", |
| 128 "//testing/gtest", | 127 "//testing/gtest", |
| 129 "//third_party/webrtc/base:rtc_base_approved", | 128 "//third_party/webrtc/base:rtc_base_approved", |
| 130 ] | 129 ] |
| 131 } | 130 } |
| OLD | NEW |