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

Side by Side 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 unified diff | Download patch
« no previous file with comments | « remoting/test/BUILD.gn ('k') | 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
(Empty)
1 # Copyright 2016 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 import("//remoting/build/config/remoting_build.gni")
6
7 group("all_tests") {
8 testonly = true
9 }
10
11 group("all") {
12 testonly = true
13
14 deps = []
15
16 if (is_win) {
17 deps += [ ":remoting_breakpad_tester" ]
18 }
19
20 if (enable_nacl) {
21 deps += [ "//remoting/tools/javascript_key_tester" ]
22 }
23 }
24
25 if (is_win) {
26 executable("remoting_breakpad_tester") {
27 deps = [
28 "//base",
29 "//build/win:default_exe_manifest",
30 "//remoting/host",
31 ]
32
33 configs += [ "//build/config/compiler:wexit_time_destructors" ]
34
35 sources = [
36 "breakpad_tester_win.cc",
37 ]
38 }
39 }
OLDNEW
« 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