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

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

Issue 2694363005: Add gn dependency on rtc_task_runner. (Closed)
Patch Set: Dropped two of the rtc_task_runner deps. Created 3 years, 10 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
« no previous file with comments | « content/test/BUILD.gn ('k') | remoting/client/ios/BUILD.gn » ('j') | no next file with comments »
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 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",
34 ] 35 ]
35 36
36 public_configs = [ "//third_party/khronos:khronos_headers" ] 37 public_configs = [ "//third_party/khronos:khronos_headers" ]
37 38
38 if (is_android) { 39 if (is_android) {
39 libs = [ "GLESv2" ] 40 libs = [ "GLESv2" ]
40 } 41 }
41 42
42 if (is_linux) { 43 if (is_linux) {
43 libs = [ "GL" ] 44 libs = [ "GL" ]
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 "//remoting/build/config:version", 80 "//remoting/build/config:version",
80 "//remoting/build/config:enable_webrtc_remoting_client", 81 "//remoting/build/config:enable_webrtc_remoting_client",
81 ] 82 ]
82 83
83 deps = [ 84 deps = [
84 ":display", 85 ":display",
85 "//remoting/proto", 86 "//remoting/proto",
86 "//testing/gmock", 87 "//testing/gmock",
87 "//testing/gtest", 88 "//testing/gtest",
88 "//third_party/webrtc/base:rtc_base", 89 "//third_party/webrtc/base:rtc_base",
90 "//third_party/webrtc/base:rtc_task_runner",
89 ] 91 ]
90 } 92 }
91 } 93 }
OLDNEW
« no previous file with comments | « content/test/BUILD.gn ('k') | remoting/client/ios/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698