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", |
| 53 "//third_party/libyuv", |
58 "//third_party/webrtc", | 54 "//third_party/webrtc", |
59 ] | 55 ] |
60 | 56 |
61 configs += [ "//third_party/khronos:khronos_headers" ] | 57 configs += [ "//third_party/khronos:khronos_headers" ] |
62 } | 58 } |
63 } | 59 } |
64 | 60 |
65 static_library("test_support") { | 61 static_library("test_support") { |
66 testonly = true | 62 testonly = true |
67 | 63 |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
107 | 103 |
108 deps = [ | 104 deps = [ |
109 ":client", | 105 ":client", |
110 ":test_support", | 106 ":test_support", |
111 "//remoting/proto", | 107 "//remoting/proto", |
112 "//testing/gmock", | 108 "//testing/gmock", |
113 "//testing/gtest", | 109 "//testing/gtest", |
114 "//third_party/webrtc", | 110 "//third_party/webrtc", |
115 ] | 111 ] |
116 } | 112 } |
OLD | NEW |