| 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 set_sources_assignment_filter(sources_assignment_filter) | 51 set_sources_assignment_filter(sources_assignment_filter) |
| 52 | 52 |
| 53 configs += [ | 53 configs += [ |
| 54 "//build/config/compiler:wexit_time_destructors", | 54 "//build/config/compiler:wexit_time_destructors", |
| 55 "//remoting/build/config:version", | 55 "//remoting/build/config:version", |
| 56 "//remoting/build/config:enable_webrtc_remoting_client", | 56 "//remoting/build/config:enable_webrtc_remoting_client", |
| 57 ] | 57 ] |
| 58 | 58 |
| 59 deps = [ | 59 deps = [ |
| 60 "//remoting/base", | 60 "//remoting/base", |
| 61 "//remoting/client/input", |
| 61 "//remoting/codec:decoder", | 62 "//remoting/codec:decoder", |
| 62 "//remoting/protocol", | 63 "//remoting/protocol", |
| 63 "//third_party/libyuv", | 64 "//third_party/libyuv", |
| 64 "//third_party/webrtc/modules/desktop_capture:primitives", | 65 "//third_party/webrtc/modules/desktop_capture:primitives", |
| 65 "//ui/events:dom_keycode_converter", | 66 "//ui/events:dom_keycode_converter", |
| 66 ] | 67 ] |
| 67 | 68 |
| 68 libs = [] | 69 libs = [] |
| 69 | 70 |
| 70 if (is_nacl) { | 71 if (is_nacl) { |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 ] | 126 ] |
| 126 | 127 |
| 127 deps = [ | 128 deps = [ |
| 128 ":client", | 129 ":client", |
| 129 "//remoting/proto", | 130 "//remoting/proto", |
| 130 "//testing/gmock", | 131 "//testing/gmock", |
| 131 "//testing/gtest", | 132 "//testing/gtest", |
| 132 "//third_party/webrtc/base:rtc_base_approved", | 133 "//third_party/webrtc/base:rtc_base_approved", |
| 133 ] | 134 ] |
| 134 } | 135 } |
| OLD | NEW |