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

Side by Side Diff: remoting/BUILD.gn

Issue 1717143002: Move //remoting/remoting_host_win.gypi:* to GN (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Move //remoting/remoting_host_win.gypi:* to GN Created 4 years, 9 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 | « no previous file | remoting/host/BUILD.gn » ('j') | 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 16 matching lines...) Expand all
27 "//remoting/webapp:ar_sample_app", 27 "//remoting/webapp:ar_sample_app",
28 ] 28 ]
29 29
30 # TODO(GYP): add is_mac 30 # TODO(GYP): add is_mac
31 if ((is_linux && !is_chromeos) || is_win) { 31 if ((is_linux && !is_chromeos) || is_win) {
32 deps += [ "//remoting/webapp" ] 32 deps += [ "//remoting/webapp" ]
33 } 33 }
34 34
35 if (is_win) { 35 if (is_win) {
36 deps += [ 36 deps += [
37 #"//remoting:remoting_breakpad_tester", 37 "//remoting:remoting_breakpad_tester",
38 #"//remoting:remoting_console", 38 "//remoting/host:remoting_console",
39 #"//remoting:remoting_desktop", 39 "//remoting/host:remoting_desktop",
40 #"//remoting:remoting_host_installation", 40
41 # "//remoting:remoting_host_installation",
41 ] 42 ]
42 } 43 }
43 44
44 if (is_android) { 45 if (is_android) {
45 deps += [ 46 deps += [
46 "//remoting/android:remoting_apk", 47 "//remoting/android:remoting_apk",
47 "//remoting/android:remoting_test_apk", 48 "//remoting/android:remoting_test_apk",
48 ] 49 ]
49 } 50 }
50 51
(...skipping 25 matching lines...) Expand all
76 } 77 }
77 78
78 if (is_win) { 79 if (is_win) {
79 # GYP version: remoting/remoting_host_win.gypi:remoting_breakpad_tester 80 # GYP version: remoting/remoting_host_win.gypi:remoting_breakpad_tester
80 executable("remoting_breakpad_tester") { 81 executable("remoting_breakpad_tester") {
81 deps = [ 82 deps = [
82 "//base", 83 "//base",
83 "//remoting/host", 84 "//remoting/host",
84 ] 85 ]
85 86
87 configs += [ "//build/config/compiler:wexit_time_destructors" ]
88
86 sources = [ 89 sources = [
87 "tools/breakpad_tester_win.cc", 90 "tools/breakpad_tester_win.cc",
88 ] 91 ]
89 } 92 }
90 } 93 }
91 94
92 # GYP version: remoting/remoting_test.gypi:remoting_test_support 95 # GYP version: remoting/remoting_test.gypi:remoting_test_support
93 source_set("test_support") { 96 source_set("test_support") {
94 testonly = true 97 testonly = true
95 98
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
188 191
189 if (enable_webrtc) { 192 if (enable_webrtc) {
190 deps += [ "//third_party/libjingle:libjingle_webrtc" ] 193 deps += [ "//third_party/libjingle:libjingle_webrtc" ]
191 } 194 }
192 } 195 }
193 } 196 }
194 } else { 197 } else {
195 group("remoting_unittests") { 198 group("remoting_unittests") {
196 } 199 }
197 } 200 }
OLDNEW
« no previous file with comments | « no previous file | remoting/host/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698