| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//build/util/version.gni") | 7 import("//build/util/version.gni") |
| 8 import("//remoting/remoting_enable.gni") | 8 import("//remoting/remoting_enable.gni") |
| 9 import("//remoting/remoting_options.gni") | 9 import("//remoting/remoting_options.gni") |
| 10 import("//remoting/remoting_version.gni") | 10 import("//remoting/remoting_version.gni") |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 | 106 |
| 107 configs += [ "//build/config/compiler:wexit_time_destructors" ] | 107 configs += [ "//build/config/compiler:wexit_time_destructors" ] |
| 108 | 108 |
| 109 sources = [ | 109 sources = [ |
| 110 "tools/breakpad_tester_win.cc", | 110 "tools/breakpad_tester_win.cc", |
| 111 ] | 111 ] |
| 112 } | 112 } |
| 113 } | 113 } |
| 114 | 114 |
| 115 # GYP version: remoting/remoting_test.gypi:remoting_test_support | 115 # GYP version: remoting/remoting_test.gypi:remoting_test_support |
| 116 source_set("test_support") { | 116 group("test_support") { |
| 117 testonly = true | 117 testonly = true |
| 118 | 118 |
| 119 deps = [ | 119 deps = [ |
| 120 "//base", | 120 "//base", |
| 121 "//net", | 121 "//net", |
| 122 "//remoting/base", | 122 "//remoting/base", |
| 123 "//remoting/client", | 123 "//remoting/client", |
| 124 "//remoting/codec", | 124 "//remoting/codec", |
| 125 "//remoting/protocol:test_support", | 125 "//remoting/protocol:test_support", |
| 126 "//remoting/resources", | 126 "//remoting/resources", |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 218 "//testing/gtest", | 218 "//testing/gtest", |
| 219 "//third_party/libjingle", | 219 "//third_party/libjingle", |
| 220 "//third_party/webrtc/modules/desktop_capture", | 220 "//third_party/webrtc/modules/desktop_capture", |
| 221 ] | 221 ] |
| 222 | 222 |
| 223 if (enable_webrtc) { | 223 if (enable_webrtc) { |
| 224 deps += [ "//third_party/libjingle:libjingle_webrtc" ] | 224 deps += [ "//third_party/libjingle:libjingle_webrtc" ] |
| 225 } | 225 } |
| 226 } | 226 } |
| 227 } | 227 } |
| OLD | NEW |