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

Side by Side Diff: remoting/BUILD.gn

Issue 1411413009: Only build remoting_me2me_host_archive in chrome_branded build. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
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 | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 "//remoting/host", 55 "//remoting/host",
56 "//remoting/host:remoting_start_host", 56 "//remoting/host:remoting_start_host",
57 "//remoting/host/it2me:remote_assistance_host", 57 "//remoting/host/it2me:remote_assistance_host",
58 58
59 #"//remoting:remoting_it2me_native_messaging_host", 59 #"//remoting:remoting_it2me_native_messaging_host",
60 #"//remoting:remoting_native_messaging_manifests", 60 #"//remoting:remoting_native_messaging_manifests",
61 ] 61 ]
62 } 62 }
63 63
64 if (enable_me2me_host) { 64 if (enable_me2me_host) {
65 deps += [ 65 deps += [ "//remoting/host:remoting_me2me_host" ]
66 "//remoting/host:remoting_me2me_host", 66 if (is_chrome_branded) {
67 "//remoting/host:remoting_me2me_host_archive", 67 deps += [ "//remoting/host:remoting_me2me_host_archive" ]
68 ] 68 }
69 } 69 }
70 70
71 if (enable_pnacl) { 71 if (enable_pnacl) {
72 deps += [ "//remoting/tools/javascript_key_tester" ] 72 deps += [ "//remoting/tools/javascript_key_tester" ]
73 } 73 }
74 } 74 }
75 75
76 # GYP version: remoting/remoting_test.gypi:remoting_test_support 76 # GYP version: remoting/remoting_test.gypi:remoting_test_support
77 source_set("test_support") { 77 source_set("test_support") {
78 testonly = true 78 testonly = true
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
184 184
185 if (enable_webrtc) { 185 if (enable_webrtc) {
186 deps += [ "//third_party/libjingle:libjingle_webrtc" ] 186 deps += [ "//third_party/libjingle:libjingle_webrtc" ]
187 } 187 }
188 } 188 }
189 } 189 }
190 } else { 190 } else {
191 group("remoting_unittests") { 191 group("remoting_unittests") {
192 } 192 }
193 } 193 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698