Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(722)

Side by Side Diff: remoting/client/BUILD.gn

Issue 2555803002: Adding the iOS app and integration example with GlRenderer. (Closed)
Patch Set: Adjusting how gl_renderer draws layers and added a demo app for CRD iOS. Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | remoting/client/gl_cursor.h » ('j') | remoting/client/gl_drawable.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 static_library("client") { 5 static_library("client") {
6 # Disabled the source filters because there are _mac files that need to 6 # Disabled the source filters because there are _mac files that need to
7 # be compiled on all platforms. 7 # be compiled on all platforms.
8 set_sources_assignment_filter([]) 8 set_sources_assignment_filter([])
9 9
10 sources = [ 10 sources = [
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 "gl_canvas.cc", 78 "gl_canvas.cc",
79 "gl_canvas.h", 79 "gl_canvas.h",
80 "gl_cursor.cc", 80 "gl_cursor.cc",
81 "gl_cursor.h", 81 "gl_cursor.h",
82 "gl_cursor_feedback.cc", 82 "gl_cursor_feedback.cc",
83 "gl_cursor_feedback.h", 83 "gl_cursor_feedback.h",
84 "gl_cursor_feedback_texture.cc", 84 "gl_cursor_feedback_texture.cc",
85 "gl_cursor_feedback_texture.h", 85 "gl_cursor_feedback_texture.h",
86 "gl_desktop.cc", 86 "gl_desktop.cc",
87 "gl_desktop.h", 87 "gl_desktop.h",
88 "gl_drawable.h",
88 "gl_helpers.cc", 89 "gl_helpers.cc",
89 "gl_helpers.h", 90 "gl_helpers.h",
90 "gl_math.cc", 91 "gl_math.cc",
91 "gl_math.h", 92 "gl_math.h",
92 "gl_render_layer.cc", 93 "gl_render_layer.cc",
93 "gl_render_layer.h", 94 "gl_render_layer.h",
94 "gl_renderer.cc", 95 "gl_renderer.cc",
95 "gl_renderer.h", 96 "gl_renderer.h",
96 ] 97 ]
97 98
98 deps = [ 99 deps = [
99 "//remoting/proto",
100 "//third_party/libyuv", 100 "//third_party/libyuv",
101 "//third_party/webrtc/base:rtc_base", 101 "//third_party/webrtc/base:rtc_base",
102 ] 102 ]
103 103
104 public_deps = [
105 "//remoting/proto:proto_lite",
106 ]
107
104 configs += [ "//third_party/khronos:khronos_headers" ] 108 configs += [ "//third_party/khronos:khronos_headers" ]
105 109
106 if (is_linux) { 110 if (is_linux) {
107 libs = [ "GL" ] 111 libs = [ "GL" ]
108 } 112 }
109 113
110 if (is_mac) { 114 if (is_mac) {
111 libs = [ "OpenGL.framework" ] 115 libs = [ "OpenGL.framework" ]
112 } 116 }
113 117
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
160 "//third_party/webrtc/base:rtc_base", 164 "//third_party/webrtc/base:rtc_base",
161 ] 165 ]
162 166
163 if (!is_win) { 167 if (!is_win) {
164 # Windows clang builder fails to link the test binary with ANGLE GLESv2. 168 # Windows clang builder fails to link the test binary with ANGLE GLESv2.
165 # crbug.com/642027 169 # crbug.com/642027
166 sources += [ "gl_renderer_unittest.cc" ] 170 sources += [ "gl_renderer_unittest.cc" ]
167 deps += [ ":opengl_renderer" ] 171 deps += [ ":opengl_renderer" ]
168 } 172 }
169 } 173 }
OLDNEW
« no previous file with comments | « no previous file | remoting/client/gl_cursor.h » ('j') | remoting/client/gl_drawable.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698