| 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 static_library("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([]) |
| 11 sources = rebase_path(remoting_srcs_gypi_values.remoting_client_sources, | 11 sources = rebase_path(remoting_srcs_gypi_values.remoting_client_sources, |
| 12 ".", | 12 ".", |
| 13 "//remoting") | 13 "//remoting") |
| 14 set_sources_assignment_filter(sources_assignment_filter) | 14 set_sources_assignment_filter(sources_assignment_filter) |
| 15 | 15 |
| 16 configs += [ | 16 configs += [ |
| 17 "//build/config/compiler:wexit_time_destructors", | 17 "//build/config/compiler:wexit_time_destructors", |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 ] | 55 ] |
| 56 | 56 |
| 57 deps = [ | 57 deps = [ |
| 58 "//third_party/webrtc", | 58 "//third_party/webrtc", |
| 59 ] | 59 ] |
| 60 | 60 |
| 61 configs += [ "//third_party/khronos:khronos_headers" ] | 61 configs += [ "//third_party/khronos:khronos_headers" ] |
| 62 } | 62 } |
| 63 } | 63 } |
| 64 | 64 |
| 65 source_set("test_support") { | 65 static_library("test_support") { |
| 66 testonly = true | 66 testonly = true |
| 67 | 67 |
| 68 sources = [ | 68 sources = [ |
| 69 "fake_audio_consumer.cc", | 69 "fake_audio_consumer.cc", |
| 70 "fake_audio_consumer.h", | 70 "fake_audio_consumer.h", |
| 71 ] | 71 ] |
| 72 | 72 |
| 73 public_deps = [ | 73 public_deps = [ |
| 74 "//remoting/protocol:test_support", | 74 "//remoting/protocol:test_support", |
| 75 "//testing/gmock", | 75 "//testing/gmock", |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 | 107 |
| 108 deps = [ | 108 deps = [ |
| 109 ":client", | 109 ":client", |
| 110 ":test_support", | 110 ":test_support", |
| 111 "//remoting/proto", | 111 "//remoting/proto", |
| 112 "//testing/gmock", | 112 "//testing/gmock", |
| 113 "//testing/gtest", | 113 "//testing/gtest", |
| 114 "//third_party/webrtc", | 114 "//third_party/webrtc", |
| 115 ] | 115 ] |
| 116 } | 116 } |
| OLD | NEW |