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

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

Issue 1427003009: Implement WebrtcTransport (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@transport_session.h
Patch Set: Created 5 years, 1 month 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/protocol/BUILD.gn » ('j') | remoting/remoting.gyp » ('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 import("//build/config/allocator.gni") 5 import("//build/config/allocator.gni")
6 import("//build/config/features.gni") 6 import("//build/config/features.gni")
7 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
8 import("//build/util/version.gni") 8 import("//build/util/version.gni")
9 import("//remoting/remoting_host.gni") 9 import("//remoting/remoting_host.gni")
10 import("//remoting/remoting_locales.gni") 10 import("//remoting/remoting_locales.gni")
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after
186 } 186 }
187 187
188 if (is_win) { 188 if (is_win) {
189 deps += [ 189 deps += [
190 ":messages", 190 ":messages",
191 ":remoting_lib_idl", 191 ":remoting_lib_idl",
192 ] 192 ]
193 } 193 }
194 194
195 if (enable_webrtc) { 195 if (enable_webrtc) {
196 deps += [ 196 deps += [ "//third_party/webrtc/modules/desktop_capture" ]
197 # TODO(GYP): crbug.com/481633. We should probably not have to depend on
198 # libjingle_webrtc; that should be pulled in automatically by
199 # libpeerconnection instead.
200 "//third_party/libjingle:libjingle_webrtc",
201 "//third_party/libjingle:libpeerconnection",
202 "//third_party/webrtc/modules/desktop_capture",
203 ]
204 197
205 sources += 198 sources +=
206 rebase_path(remoting_host_srcs_gypi_values.remoting_cast_sources, 199 rebase_path(remoting_host_srcs_gypi_values.remoting_cast_sources,
207 ".", 200 ".",
208 "//remoting") 201 "//remoting")
209 } 202 }
210 } 203 }
211 204
212 source_set("test_support") { 205 source_set("test_support") {
213 testonly = true 206 testonly = true
(...skipping 440 matching lines...) Expand 10 before | Expand all | Expand 10 after
654 "//remoting/resources", 647 "//remoting/resources",
655 "//third_party/icu:icudata", 648 "//third_party/icu:icudata",
656 ] 649 ]
657 } 650 }
658 } else { 651 } else {
659 group("remoting_me2me_host_archive") { 652 group("remoting_me2me_host_archive") {
660 } 653 }
661 } 654 }
662 } 655 }
663 } 656 }
OLDNEW
« no previous file with comments | « no previous file | remoting/protocol/BUILD.gn » ('j') | remoting/remoting.gyp » ('J')

Powered by Google App Engine
This is Rietveld 408576698