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

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

Issue 2694903005: Add a copy of webrtc's TaskRunner abstraction, which is going to be deleted in webrtc. (Closed)
Patch Set: Delete dependencies on webrtc's rtc_task_runner. Created 3 years, 9 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 source_set("display") { 5 source_set("display") {
6 sources = [ 6 sources = [
7 "canvas.h", 7 "canvas.h",
8 "drawable.h", 8 "drawable.h",
9 "gl_canvas.cc", 9 "gl_canvas.cc",
10 "gl_canvas.h", 10 "gl_canvas.h",
(...skipping 13 matching lines...) Expand all
24 "gl_render_layer.h", 24 "gl_render_layer.h",
25 "gl_renderer.cc", 25 "gl_renderer.cc",
26 "gl_renderer.h", 26 "gl_renderer.h",
27 "sys_opengl.h", 27 "sys_opengl.h",
28 ] 28 ]
29 29
30 deps = [ 30 deps = [
31 "//remoting/proto", 31 "//remoting/proto",
32 "//third_party/libyuv", 32 "//third_party/libyuv",
33 "//third_party/webrtc/base:rtc_base", 33 "//third_party/webrtc/base:rtc_base",
34 "//third_party/webrtc/base:rtc_task_runner",
35 ] 34 ]
36 35
37 public_configs = [ "//third_party/khronos:khronos_headers" ] 36 public_configs = [ "//third_party/khronos:khronos_headers" ]
38 37
39 if (is_android) { 38 if (is_android) {
40 libs = [ "GLESv2" ] 39 libs = [ "GLESv2" ]
41 } 40 }
42 41
43 if (is_linux) { 42 if (is_linux) {
44 libs = [ "GL" ] 43 libs = [ "GL" ]
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 "//remoting/build/config:version", 79 "//remoting/build/config:version",
81 "//remoting/build/config:enable_webrtc_remoting_client", 80 "//remoting/build/config:enable_webrtc_remoting_client",
82 ] 81 ]
83 82
84 deps = [ 83 deps = [
85 ":display", 84 ":display",
86 "//remoting/proto", 85 "//remoting/proto",
87 "//testing/gmock", 86 "//testing/gmock",
88 "//testing/gtest", 87 "//testing/gtest",
89 "//third_party/webrtc/base:rtc_base", 88 "//third_party/webrtc/base:rtc_base",
90 "//third_party/webrtc/base:rtc_task_runner",
91 ] 89 ]
92 } 90 }
93 } 91 }
OLDNEW
« no previous file with comments | « jingle/notifier/listener/push_notifications_subscribe_task.cc ('k') | remoting/client/ios/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698