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