| 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 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 configs += [ | 102 configs += [ |
| 103 "//remoting/build/config:version", | 103 "//remoting/build/config:version", |
| 104 "//remoting/build/config:enable_webrtc_remoting_client", | 104 "//remoting/build/config:enable_webrtc_remoting_client", |
| 105 ] | 105 ] |
| 106 | 106 |
| 107 deps = [ | 107 deps = [ |
| 108 ":client", | 108 ":client", |
| 109 "//remoting/proto", | 109 "//remoting/proto", |
| 110 "//testing/gmock", | 110 "//testing/gmock", |
| 111 "//testing/gtest", | 111 "//testing/gtest", |
| 112 "//third_party/webrtc/base:rtc_base", | 112 "//third_party/webrtc/base:rtc_base_approved", |
| 113 ] | 113 ] |
| 114 } | 114 } |
| OLD | NEW |