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_version.gni") | 8 import("//remoting/remoting_version.gni") |
9 import("//remoting/remoting_enable.gni") | 9 import("//remoting/remoting_enable.gni") |
10 import("//testing/test.gni") | 10 import("//testing/test.gni") |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 ] | 59 ] |
60 } | 60 } |
61 | 61 |
62 if (enable_me2me_host) { | 62 if (enable_me2me_host) { |
63 deps += [ | 63 deps += [ |
64 "//remoting/host:remoting_me2me_host", | 64 "//remoting/host:remoting_me2me_host", |
65 #"//remoting/host:remoting_me2me_host_archive", | 65 #"//remoting/host:remoting_me2me_host_archive", |
66 ] | 66 ] |
67 } | 67 } |
68 | 68 |
69 if (enable_nacl) { | 69 if (enable_pnacl) { |
70 deps += [ "//remoting/tools/javascript_key_tester" ] | 70 deps += [ "//remoting/tools/javascript_key_tester" ] |
71 } | 71 } |
72 } | 72 } |
73 | 73 |
74 # GYP version: remoting/remoting_test.gypi:remoting_test_support | 74 # GYP version: remoting/remoting_test.gypi:remoting_test_support |
75 source_set("test_support") { | 75 source_set("test_support") { |
76 testonly = true | 76 testonly = true |
77 | 77 |
78 deps = [ | 78 deps = [ |
79 "//base", | 79 "//base", |
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
182 | 182 |
183 if (enable_webrtc) { | 183 if (enable_webrtc) { |
184 deps += [ "//third_party/libjingle:libjingle_webrtc" ] | 184 deps += [ "//third_party/libjingle:libjingle_webrtc" ] |
185 } | 185 } |
186 } | 186 } |
187 } | 187 } |
188 } else { | 188 } else { |
189 group("remoting_unittests") { | 189 group("remoting_unittests") { |
190 } | 190 } |
191 } | 191 } |
OLD | NEW |