| 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("//media/media_options.gni") | 6 import("//media/media_options.gni") |
| 7 import("//remoting/remoting_options.gni") | 7 import("//remoting/remoting_options.gni") |
| 8 import("//remoting/remoting_locales.gni") | 8 import("//remoting/remoting_locales.gni") |
| 9 import("//remoting/remoting_version.gni") | 9 import("//remoting/remoting_version.gni") |
| 10 | 10 |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 "//base:i18n", | 45 "//base:i18n", |
| 46 "//net", | 46 "//net", |
| 47 "//remoting/base", | 47 "//remoting/base", |
| 48 "//remoting/host", | 48 "//remoting/host", |
| 49 "//remoting/protocol", | 49 "//remoting/protocol", |
| 50 "//remoting/resources", | 50 "//remoting/resources", |
| 51 "//remoting/signaling", | 51 "//remoting/signaling", |
| 52 ] | 52 ] |
| 53 | 53 |
| 54 if (is_desktop_linux) { | 54 if (is_desktop_linux) { |
| 55 # GTK2 pulls pangoft2 as dependency, and pangoft2 depends on harfbuzz. | 55 deps += [ |
| 56 # To avoid missing indirectly referenced harfbuzz symbols from pango, | 56 "//build/config/linux/gtk", |
| 57 # some hack is required when bundled harfbuzz is used and component build is | 57 |
| 58 # disabled. | 58 # GTK pulls pangoft2, which requires HarfBuzz symbols. Since we |
| 59 # See crbug.com/462689 for details. | 59 # link our own HarfBuzz, avoid mixing symbols from system HarfBuzz |
| 60 all_dependent_configs = [ "//third_party/harfbuzz-ng:pangoft2_link_hack" ] | 60 # and own ones, hence the dependency to harfbuzz-ng here. |
| 61 deps += [ "//build/config/linux/gtk" ] | 61 "//third_party/harfbuzz-ng", |
| 62 ] |
| 62 } | 63 } |
| 63 } | 64 } |
| 64 | 65 |
| 65 if (!is_chromeos && enable_remoting_host) { | 66 if (!is_chromeos && enable_remoting_host) { |
| 66 if (is_win) { | 67 if (is_win) { |
| 67 executable("remote_assistance_host") { | 68 executable("remote_assistance_host") { |
| 68 configs += [ "//build/config/compiler:wexit_time_destructors" ] | 69 configs += [ "//build/config/compiler:wexit_time_destructors" ] |
| 69 | 70 |
| 70 deps = [ | 71 deps = [ |
| 71 "//base/allocator", | 72 "//base/allocator", |
| (...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 229 if (enable_webrtc) { | 230 if (enable_webrtc) { |
| 230 deps += [ "//third_party/webrtc_overrides:init_webrtc" ] | 231 deps += [ "//third_party/webrtc_overrides:init_webrtc" ] |
| 231 } | 232 } |
| 232 | 233 |
| 233 if (is_desktop_linux) { | 234 if (is_desktop_linux) { |
| 234 deps += [ "//build/config/linux/gtk" ] | 235 deps += [ "//build/config/linux/gtk" ] |
| 235 } | 236 } |
| 236 } | 237 } |
| 237 } | 238 } |
| 238 } | 239 } |
| OLD | NEW |