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

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

Issue 2045963004: [Remoting] OpenGL Rendering Layer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Reviewer's Feedback Created 4 years, 5 months 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
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 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
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 source_set("opengl_renderer") {
45 sources = [
46 "gl_canvas.cc",
47 "gl_canvas.h",
48 "gl_desktop.cc",
49 "gl_desktop.h",
50 "gl_helpers.cc",
51 "gl_helpers.h",
52 "gl_render_layer.cc",
53 "gl_render_layer.h",
54 ]
55
56 deps = [
57 "//third_party/webrtc",
58 ]
59
60 configs += [ "//third_party/khronos:khronos_headers" ]
61 }
62
44 source_set("test_support") { 63 source_set("test_support") {
45 testonly = true 64 testonly = true
46 65
47 sources = [ 66 sources = [
48 "fake_audio_consumer.cc", 67 "fake_audio_consumer.cc",
49 "fake_audio_consumer.h", 68 "fake_audio_consumer.h",
50 ] 69 ]
51 70
52 public_deps = [ 71 public_deps = [
53 "//remoting/protocol:test_support", 72 "//remoting/protocol:test_support",
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 105
87 deps = [ 106 deps = [
88 ":client", 107 ":client",
89 ":test_support", 108 ":test_support",
90 "//remoting/proto", 109 "//remoting/proto",
91 "//testing/gmock", 110 "//testing/gmock",
92 "//testing/gtest", 111 "//testing/gtest",
93 "//third_party/webrtc", 112 "//third_party/webrtc",
94 ] 113 ]
95 } 114 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698