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

Unified Diff: remoting/tools/BUILD.gn

Issue 2308813002: Moving CRD Windows targets to subdirectories. (Closed)
Patch Set: The exec needs to be called native_messaging_host for downstream installers to work. 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 | « remoting/test/BUILD.gn ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/tools/BUILD.gn
diff --git a/remoting/tools/BUILD.gn b/remoting/tools/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..67f76533a96b26f6012105f282ad7f6d783ab244
--- /dev/null
+++ b/remoting/tools/BUILD.gn
@@ -0,0 +1,39 @@
+# Copyright 2016 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+import("//remoting/build/config/remoting_build.gni")
+
+group("all_tests") {
+ testonly = true
+}
+
+group("all") {
+ testonly = true
+
+ deps = []
+
+ if (is_win) {
+ deps += [ ":remoting_breakpad_tester" ]
+ }
+
+ if (enable_nacl) {
+ deps += [ "//remoting/tools/javascript_key_tester" ]
+ }
+}
+
+if (is_win) {
+ executable("remoting_breakpad_tester") {
+ deps = [
+ "//base",
+ "//build/win:default_exe_manifest",
+ "//remoting/host",
+ ]
+
+ configs += [ "//build/config/compiler:wexit_time_destructors" ]
+
+ sources = [
+ "breakpad_tester_win.cc",
+ ]
+ }
+}
« no previous file with comments | « remoting/test/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698