| 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 23 matching lines...) Expand all Loading... |
| 34 "server_log_entry_client.cc", | 34 "server_log_entry_client.cc", |
| 35 ] | 35 ] |
| 36 } else { | 36 } else { |
| 37 sources += rebase_path( | 37 sources += rebase_path( |
| 38 remoting_srcs_gypi_values.remoting_client_standalone_sources, | 38 remoting_srcs_gypi_values.remoting_client_standalone_sources, |
| 39 ".", | 39 ".", |
| 40 "//remoting") | 40 "//remoting") |
| 41 } | 41 } |
| 42 } | 42 } |
| 43 | 43 |
| 44 if (is_android || is_ios) { |
| 45 source_set("opengl_renderer") { |
| 46 sources = [ |
| 47 "gl_canvas.cc", |
| 48 "gl_canvas.h", |
| 49 "gl_desktop.cc", |
| 50 "gl_desktop.h", |
| 51 "gl_helpers.cc", |
| 52 "gl_helpers.h", |
| 53 "gl_render_layer.cc", |
| 54 "gl_render_layer.h", |
| 55 ] |
| 56 |
| 57 deps = [ |
| 58 "//third_party/webrtc", |
| 59 ] |
| 60 |
| 61 configs += [ "//third_party/khronos:khronos_headers" ] |
| 62 } |
| 63 } |
| 64 |
| 44 source_set("test_support") { | 65 source_set("test_support") { |
| 45 testonly = true | 66 testonly = true |
| 46 | 67 |
| 47 sources = [ | 68 sources = [ |
| 48 "fake_audio_consumer.cc", | 69 "fake_audio_consumer.cc", |
| 49 "fake_audio_consumer.h", | 70 "fake_audio_consumer.h", |
| 50 ] | 71 ] |
| 51 | 72 |
| 52 public_deps = [ | 73 public_deps = [ |
| 53 "//remoting/protocol:test_support", | 74 "//remoting/protocol:test_support", |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 | 107 |
| 87 deps = [ | 108 deps = [ |
| 88 ":client", | 109 ":client", |
| 89 ":test_support", | 110 ":test_support", |
| 90 "//remoting/proto", | 111 "//remoting/proto", |
| 91 "//testing/gmock", | 112 "//testing/gmock", |
| 92 "//testing/gtest", | 113 "//testing/gtest", |
| 93 "//third_party/webrtc", | 114 "//third_party/webrtc", |
| 94 ] | 115 ] |
| 95 } | 116 } |
| OLD | NEW |