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

Side by Side Diff: remoting/test/BUILD.gn

Issue 2342163002: Fix gtk3 build (Closed)
Patch Set: wip 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/host/it2me/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
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("//remoting/remoting_enable.gni") 5 import("//remoting/remoting_enable.gni")
6 6
7 static_library("test_support") { 7 static_library("test_support") {
8 testonly = true 8 testonly = true
9 9
10 sources = [ 10 sources = [
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after
189 sources = [ 189 sources = [
190 "it2me_standalone_host_main.cc", 190 "it2me_standalone_host_main.cc",
191 ] 191 ]
192 192
193 deps = [ 193 deps = [
194 ":it2me_standalone_host", 194 ":it2me_standalone_host",
195 "//build/win:default_exe_manifest", 195 "//build/win:default_exe_manifest",
196 ] 196 ]
197 197
198 if (is_desktop_linux) { 198 if (is_desktop_linux) {
199 deps += [ "//build/config/linux/gtk2" ] 199 if (use_gtk3) {
200 deps += [ "//build/config/linux/gtk3" ]
201 } else {
202 deps += [ "//build/config/linux/gtk2" ]
203 }
200 } 204 }
201 } 205 }
202 } 206 }
203 207
204 source_set("unit_tests") { 208 source_set("unit_tests") {
205 testonly = true 209 testonly = true
206 210
207 sources = [ 211 sources = [
208 "access_token_fetcher_unittest.cc", 212 "access_token_fetcher_unittest.cc",
209 "app_remoting_report_issue_request_unittest.cc", 213 "app_remoting_report_issue_request_unittest.cc",
(...skipping 10 matching lines...) Expand all
220 ":ar_test_driver_common", 224 ":ar_test_driver_common",
221 ":test_support", 225 ":test_support",
222 "//base", 226 "//base",
223 "//net:test_support", 227 "//net:test_support",
224 "//testing/gmock", 228 "//testing/gmock",
225 "//testing/gtest", 229 "//testing/gtest",
226 "//third_party/libyuv", 230 "//third_party/libyuv",
227 "//third_party/webrtc/modules/desktop_capture", 231 "//third_party/webrtc/modules/desktop_capture",
228 ] 232 ]
229 } 233 }
OLDNEW
« no previous file with comments | « remoting/host/it2me/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698