| 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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 set_sources_assignment_filter(sources_assignment_filter) | 59 set_sources_assignment_filter(sources_assignment_filter) |
| 60 | 60 |
| 61 configs += [ | 61 configs += [ |
| 62 "//build/config/compiler:wexit_time_destructors", | 62 "//build/config/compiler:wexit_time_destructors", |
| 63 "//remoting/build/config:version", | 63 "//remoting/build/config:version", |
| 64 "//remoting/build/config:enable_webrtc_remoting_client", | 64 "//remoting/build/config:enable_webrtc_remoting_client", |
| 65 ] | 65 ] |
| 66 | 66 |
| 67 deps = [ | 67 deps = [ |
| 68 "//remoting/base", | 68 "//remoting/base", |
| 69 "//remoting/client/input", |
| 69 "//remoting/codec:decoder", | 70 "//remoting/codec:decoder", |
| 70 "//remoting/protocol", | 71 "//remoting/protocol", |
| 71 "//third_party/libyuv", | 72 "//third_party/libyuv", |
| 72 "//third_party/webrtc/modules/desktop_capture:primitives", | 73 "//third_party/webrtc/modules/desktop_capture:primitives", |
| 73 "//ui/events:dom_keycode_converter", | 74 "//ui/events:dom_keycode_converter", |
| 74 ] | 75 ] |
| 75 | 76 |
| 76 libs = [] | 77 libs = [] |
| 77 | 78 |
| 78 if (is_nacl) { | 79 if (is_nacl) { |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 134 ] | 135 ] |
| 135 | 136 |
| 136 deps = [ | 137 deps = [ |
| 137 ":client", | 138 ":client", |
| 138 "//remoting/proto", | 139 "//remoting/proto", |
| 139 "//testing/gmock", | 140 "//testing/gmock", |
| 140 "//testing/gtest", | 141 "//testing/gtest", |
| 141 "//third_party/webrtc/base:rtc_base_approved", | 142 "//third_party/webrtc/base:rtc_base_approved", |
| 142 ] | 143 ] |
| 143 } | 144 } |
| OLD | NEW |