| 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 static_library("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([]) |
| (...skipping 25 matching lines...) Expand all Loading... |
| 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) { | 44 if (is_android || is_ios) { |
| 45 source_set("opengl_renderer") { | 45 source_set("opengl_renderer") { |
| 46 sources = [ | 46 sources = |
| 47 "gl_canvas.cc", | 47 rebase_path(remoting_srcs_gypi_values.remoting_opengl_renderer_sources, |
| 48 "gl_canvas.h", | 48 ".", |
| 49 "gl_desktop.cc", | 49 "//remoting") |
| 50 "gl_desktop.h", | |
| 51 "gl_helpers.cc", | |
| 52 "gl_helpers.h", | |
| 53 "gl_render_layer.cc", | |
| 54 "gl_render_layer.h", | |
| 55 ] | |
| 56 | 50 |
| 57 deps = [ | 51 deps = [ |
| 52 "//remoting/proto", |
| 58 "//third_party/webrtc", | 53 "//third_party/webrtc", |
| 59 ] | 54 ] |
| 60 | 55 |
| 61 configs += [ "//third_party/khronos:khronos_headers" ] | 56 configs += [ "//third_party/khronos:khronos_headers" ] |
| 62 } | 57 } |
| 63 } | 58 } |
| 64 | 59 |
| 65 static_library("test_support") { | 60 static_library("test_support") { |
| 66 testonly = true | 61 testonly = true |
| 67 | 62 |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 | 102 |
| 108 deps = [ | 103 deps = [ |
| 109 ":client", | 104 ":client", |
| 110 ":test_support", | 105 ":test_support", |
| 111 "//remoting/proto", | 106 "//remoting/proto", |
| 112 "//testing/gmock", | 107 "//testing/gmock", |
| 113 "//testing/gtest", | 108 "//testing/gtest", |
| 114 "//third_party/webrtc", | 109 "//third_party/webrtc", |
| 115 ] | 110 ] |
| 116 } | 111 } |
| OLD | NEW |