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

Unified Diff: remoting/BUILD.gn

Issue 2339163004: Revert of Moving CRD Windows targets to subdirectories. (Closed)
Patch Set: 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
« no previous file with comments | « .gn ('k') | remoting/build/config/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/BUILD.gn
diff --git a/remoting/BUILD.gn b/remoting/BUILD.gn
index c4c88d19baa7fce7ffbac3d39d08f858f6b5b0f9..3d94643ffbe58d16e785295e550b8e5c23801fc9 100644
--- a/remoting/BUILD.gn
+++ b/remoting/BUILD.gn
@@ -21,7 +21,8 @@
if (is_win) {
deps += [
"//remoting:remoting_breakpad_tester",
- "//remoting/host/win:all",
+ "//remoting/host:remoting_console",
+ "//remoting/host:remoting_desktop",
]
if (is_chrome_branded) {
@@ -54,8 +55,13 @@
}
}
- if (is_win || (!is_chromeos && !is_android && !is_ios)) {
+ # The same target is called differently on Linux.
+ # TODO(sergeyu): Rename it to remoting_native_messaging_host on all
+ # platforms.
+ if (is_win) {
deps += [ "//remoting/host:remoting_native_messaging_host" ]
+ } else if (!is_chromeos && !is_android) {
+ deps += [ "//remoting/host:native_messaging_host" ]
}
if (is_linux && !is_chromeos) {
@@ -84,20 +90,11 @@
"//remoting/host",
]
- libs = []
-
configs += [ "//build/config/compiler:wexit_time_destructors" ]
sources = [
"tools/breakpad_tester_win.cc",
]
-
- if (is_win) {
- libs += [
- "rpcrt4.lib",
- "wtsapi32.lib",
- ]
- }
}
}
@@ -186,9 +183,6 @@
if (enable_remoting_host) {
test("remoting_perftests") {
- defines = []
- libs = []
-
sources = [
"test/codec_perftest.cc",
"test/protocol_perftest.cc",
@@ -211,14 +205,5 @@
if (enable_webrtc) {
deps += [ "//third_party/libjingle:libjingle_webrtc" ]
}
-
- if (is_win) {
- defines += [ "_ALT_NO_EXCEPTIONS" ]
-
- libs += [
- "rpcrt4.lib",
- "wtsapi32.lib",
- ]
- }
- }
-}
+ }
+}
« no previous file with comments | « .gn ('k') | remoting/build/config/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698