| OLD | NEW | 
|---|
| 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  Loading... | 
| 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  Loading... | 
| 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 } | 
| OLD | NEW | 
|---|