| 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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 set_sources_assignment_filter(sources_assignment_filter) | 46 set_sources_assignment_filter(sources_assignment_filter) |
| 47 | 47 |
| 48 configs += [ | 48 configs += [ |
| 49 "//build/config/compiler:wexit_time_destructors", | 49 "//build/config/compiler:wexit_time_destructors", |
| 50 "//remoting/build/config:version", | 50 "//remoting/build/config:version", |
| 51 "//remoting/build/config:enable_webrtc_remoting_client", | 51 "//remoting/build/config:enable_webrtc_remoting_client", |
| 52 ] | 52 ] |
| 53 | 53 |
| 54 deps = [ | 54 deps = [ |
| 55 "//remoting/base", | 55 "//remoting/base", |
| 56 "//remoting/codec", | 56 "//remoting/codec:decoder", |
| 57 "//remoting/protocol", | 57 "//remoting/protocol", |
| 58 "//third_party/libyuv", | 58 "//third_party/libyuv", |
| 59 "//third_party/webrtc/modules/desktop_capture:primitives", | 59 "//third_party/webrtc/modules/desktop_capture:primitives", |
| 60 ] | 60 ] |
| 61 | 61 |
| 62 if (is_nacl) { | 62 if (is_nacl) { |
| 63 sources -= [ | 63 sources -= [ |
| 64 "client_status_logger.cc", | 64 "client_status_logger.cc", |
| 65 "client_telemetry_logger.cc", | 65 "client_telemetry_logger.cc", |
| 66 "server_log_entry_client.cc", | 66 "server_log_entry_client.cc", |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 103 ] | 103 ] |
| 104 | 104 |
| 105 deps = [ | 105 deps = [ |
| 106 ":client", | 106 ":client", |
| 107 "//remoting/proto", | 107 "//remoting/proto", |
| 108 "//testing/gmock", | 108 "//testing/gmock", |
| 109 "//testing/gtest", | 109 "//testing/gtest", |
| 110 "//third_party/webrtc/base:rtc_base", | 110 "//third_party/webrtc/base:rtc_base", |
| 111 ] | 111 ] |
| 112 } | 112 } |
| OLD | NEW |