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

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

Issue 2694363005: Add gn dependency on rtc_task_runner. (Closed)
Patch Set: 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
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 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 "//remoting/build/config:version", 103 "//remoting/build/config:version",
104 "//remoting/build/config:enable_webrtc_remoting_client", 104 "//remoting/build/config:enable_webrtc_remoting_client",
105 ] 105 ]
106 106
107 deps = [ 107 deps = [
108 ":client", 108 ":client",
109 "//remoting/proto", 109 "//remoting/proto",
110 "//testing/gmock", 110 "//testing/gmock",
111 "//testing/gtest", 111 "//testing/gtest",
112 "//third_party/webrtc/base:rtc_base", 112 "//third_party/webrtc/base:rtc_base",
113 "//third_party/webrtc/base:rtc_task_runner",
Sergey Ulanov 2017/02/16 19:38:13 I don't think anything under src/remoting needs ta
nisse-chromium (ooo August 14) 2017/02/20 09:51:32 And dropped this one too.
113 ] 114 ]
114 } 115 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698