| 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 import("//remoting/remoting_srcs.gni") | 5 import("//remoting/remoting_srcs.gni") |
| 6 | 6 |
| 7 source_set("client") { | 7 source_set("client") { |
| 8 # Disabled the source filters because there are _mac files that need to | 8 # Disabled the source filters because there are _mac files that need to |
| 9 # be compiled on all platforms. | 9 # be compiled on all platforms. |
| 10 set_sources_assignment_filter([]) | 10 set_sources_assignment_filter([]) |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 "//remoting/protocol", | 25 "//remoting/protocol", |
| 26 "//third_party/libyuv", | 26 "//third_party/libyuv", |
| 27 "//third_party/webrtc/modules/desktop_capture:primitives", | 27 "//third_party/webrtc/modules/desktop_capture:primitives", |
| 28 ] | 28 ] |
| 29 | 29 |
| 30 if (is_nacl) { | 30 if (is_nacl) { |
| 31 sources -= [ | 31 sources -= [ |
| 32 "client_status_logger.cc", | 32 "client_status_logger.cc", |
| 33 "server_log_entry_client.cc", | 33 "server_log_entry_client.cc", |
| 34 ] | 34 ] |
| 35 } else { | |
| 36 sources += rebase_path( | |
| 37 remoting_srcs_gypi_values.remoting_client_standalone_sources, | |
| 38 ".", | |
| 39 "//remoting") | |
| 40 } | 35 } |
| 41 } | 36 } |
| 42 | 37 |
| 43 source_set("unit_tests") { | 38 source_set("unit_tests") { |
| 44 testonly = true | 39 testonly = true |
| 45 | 40 |
| 46 # Disabled the source filters because there are _mac files that need to | 41 # Disabled the source filters because there are _mac files that need to |
| 47 # be compiled on all platforms. | 42 # be compiled on all platforms. |
| 48 set_sources_assignment_filter([]) | 43 set_sources_assignment_filter([]) |
| 49 sources = [ | 44 sources = [ |
| (...skipping 15 matching lines...) Expand all Loading... |
| 65 ] | 60 ] |
| 66 | 61 |
| 67 deps = [ | 62 deps = [ |
| 68 ":client", | 63 ":client", |
| 69 "//remoting/proto", | 64 "//remoting/proto", |
| 70 "//testing/gmock", | 65 "//testing/gmock", |
| 71 "//testing/gtest", | 66 "//testing/gtest", |
| 72 "//third_party/webrtc", | 67 "//third_party/webrtc", |
| 73 ] | 68 ] |
| 74 } | 69 } |
| OLD | NEW |