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

Unified Diff: remoting/test/BUILD.gn

Issue 2308813002: Moving CRD Windows targets to subdirectories. (Closed)
Patch Set: Correcting format. Created 4 years, 3 months 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 side-by-side diff with in-line comments
Download patch
Index: remoting/test/BUILD.gn
diff --git a/remoting/test/BUILD.gn b/remoting/test/BUILD.gn
index 86e0fca15aa0aa52a52f231983e13775e6592013..95977a0a8e143333df0a22aca46b301b7af9548e 100644
--- a/remoting/test/BUILD.gn
+++ b/remoting/test/BUILD.gn
@@ -185,6 +185,8 @@ if (enable_remoting_host && !is_android && !is_chromeos) {
executable("it2me_standalone_host_main") {
joedow 2016/09/12 18:58:43 Zijie is making changes here as well but I think y
nicholss 2016/09/12 19:56:32 Acknowledged.
testonly = true
+ defines = []
+ libs = []
sources = [
"it2me_standalone_host_main.cc",
@@ -198,6 +200,15 @@ if (enable_remoting_host && !is_android && !is_chromeos) {
if (is_desktop_linux) {
deps += [ "//build/config/linux/gtk2" ]
}
+
+ if (is_win) {
+ defines += [ "_ALT_NO_EXCEPTIONS" ]
+
+ libs += [
+ "rpcrt4.lib",
+ "wtsapi32.lib",
+ ]
+ }
}
}

Powered by Google App Engine
This is Rietveld 408576698