OLD | NEW |
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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 "//remoting/resources", | 58 "//remoting/resources", |
59 ] | 59 ] |
60 | 60 |
61 if (is_desktop_linux) { | 61 if (is_desktop_linux) { |
62 # GTK2 pulls pangoft2 as dependency, and pangoft2 depends on harfbuzz. | 62 # GTK2 pulls pangoft2 as dependency, and pangoft2 depends on harfbuzz. |
63 # To avoid missing indirectly referenced harfbuzz symbols from pango, | 63 # To avoid missing indirectly referenced harfbuzz symbols from pango, |
64 # some hack is required when bundled harfbuzz is used and component build is | 64 # some hack is required when bundled harfbuzz is used and component build is |
65 # disabled. | 65 # disabled. |
66 # See crbug.com/462689 for details. | 66 # See crbug.com/462689 for details. |
67 all_dependent_configs = [ "//third_party/harfbuzz-ng:pangoft2_link_hack" ] | 67 all_dependent_configs = [ "//third_party/harfbuzz-ng:pangoft2_link_hack" ] |
| 68 |
| 69 deps += [ "//build/config/linux/gtk2" ] |
68 } | 70 } |
69 } | 71 } |
70 | 72 |
71 if (!is_chromeos && !is_android && enable_remoting_host) { | 73 if (!is_chromeos && !is_android && enable_remoting_host) { |
72 if (is_win) { | 74 if (is_win) { |
73 # GYP version: | 75 # GYP version: |
74 # //remoting/remoting_host_win.gypi:remoting_it2me_native_messaging_host | 76 # //remoting/remoting_host_win.gypi:remoting_it2me_native_messaging_host |
75 executable("remote_assistance_host") { | 77 executable("remote_assistance_host") { |
76 configs += [ "//build/config/compiler:wexit_time_destructors" ] | 78 configs += [ "//build/config/compiler:wexit_time_destructors" ] |
77 | 79 |
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
226 if (enable_webrtc) { | 228 if (enable_webrtc) { |
227 deps += [ "//third_party/libjingle:libjingle_webrtc" ] | 229 deps += [ "//third_party/libjingle:libjingle_webrtc" ] |
228 } | 230 } |
229 | 231 |
230 if (is_desktop_linux) { | 232 if (is_desktop_linux) { |
231 deps += [ "//build/config/linux/gtk2" ] | 233 deps += [ "//build/config/linux/gtk2" ] |
232 } | 234 } |
233 } | 235 } |
234 } | 236 } |
235 } | 237 } |
OLD | NEW |