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

Side by Side Diff: remoting/host/it2me/BUILD.gn

Issue 2333313003: Fixing a crash when showing GTK dialogs on Linux on Debug builds. (Closed)
Patch Set: Moving GTK hack into a desktop_linux condition 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 | « no previous file | 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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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("//remoting/remoting_enable.gni") 6 import("//remoting/remoting_enable.gni")
7 import("//remoting/remoting_locales.gni") 7 import("//remoting/remoting_locales.gni")
8 import("//remoting/remoting_version.gni") 8 import("//remoting/remoting_version.gni")
9 9
10 if (is_win) { 10 if (is_win) {
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 ] 50 ]
51 51
52 deps = [ 52 deps = [
53 "//base:i18n", 53 "//base:i18n",
54 "//net", 54 "//net",
55 "//remoting/base", 55 "//remoting/base",
56 "//remoting/host", 56 "//remoting/host",
57 "//remoting/protocol", 57 "//remoting/protocol",
58 "//remoting/resources", 58 "//remoting/resources",
59 ] 59 ]
60
61 if (is_desktop_linux) {
62 # GTK2 pulls pangoft2 as dependency, and pangoft2 depends on harfbuzz.
63 # To avoid missing indirectly referenced harfbuzz symbols from pango,
64 # some hack is required when bundled harfbuzz is used and component build is
65 # disabled.
66 # See crbug.com/462689 for details.
67 all_dependent_configs = [ "//third_party/harfbuzz-ng:pangoft2_link_hack" ]
68 }
60 } 69 }
61 70
62 if (!is_chromeos && !is_android && enable_remoting_host) { 71 if (!is_chromeos && !is_android && enable_remoting_host) {
63 if (is_win) { 72 if (is_win) {
64 # GYP version: 73 # GYP version:
65 # //remoting/remoting_host_win.gypi:remoting_it2me_native_messaging_host 74 # //remoting/remoting_host_win.gypi:remoting_it2me_native_messaging_host
66 executable("remote_assistance_host") { 75 executable("remote_assistance_host") {
67 configs += [ "//build/config/compiler:wexit_time_destructors" ] 76 configs += [ "//build/config/compiler:wexit_time_destructors" ]
68 77
69 deps = [ 78 deps = [
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
217 if (enable_webrtc) { 226 if (enable_webrtc) {
218 deps += [ "//third_party/libjingle:libjingle_webrtc" ] 227 deps += [ "//third_party/libjingle:libjingle_webrtc" ]
219 } 228 }
220 229
221 if (is_desktop_linux) { 230 if (is_desktop_linux) {
222 deps += [ "//build/config/linux/gtk2" ] 231 deps += [ "//build/config/linux/gtk2" ]
223 } 232 }
224 } 233 }
225 } 234 }
226 } 235 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698