| 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 29 matching lines...) Expand all Loading... |
| 40 "//remoting/build/config:version", | 40 "//remoting/build/config:version", |
| 41 ] | 41 ] |
| 42 | 42 |
| 43 deps = [ | 43 deps = [ |
| 44 "//base:i18n", | 44 "//base:i18n", |
| 45 "//net", | 45 "//net", |
| 46 "//remoting/base", | 46 "//remoting/base", |
| 47 "//remoting/host", | 47 "//remoting/host", |
| 48 "//remoting/protocol", | 48 "//remoting/protocol", |
| 49 "//remoting/resources", | 49 "//remoting/resources", |
| 50 "//remoting/signaling", |
| 50 ] | 51 ] |
| 51 | 52 |
| 52 if (is_desktop_linux) { | 53 if (is_desktop_linux) { |
| 53 # GTK2 pulls pangoft2 as dependency, and pangoft2 depends on harfbuzz. | 54 # GTK2 pulls pangoft2 as dependency, and pangoft2 depends on harfbuzz. |
| 54 # To avoid missing indirectly referenced harfbuzz symbols from pango, | 55 # To avoid missing indirectly referenced harfbuzz symbols from pango, |
| 55 # some hack is required when bundled harfbuzz is used and component build is | 56 # some hack is required when bundled harfbuzz is used and component build is |
| 56 # disabled. | 57 # disabled. |
| 57 # See crbug.com/462689 for details. | 58 # See crbug.com/462689 for details. |
| 58 all_dependent_configs = [ "//third_party/harfbuzz-ng:pangoft2_link_hack" ] | 59 all_dependent_configs = [ "//third_party/harfbuzz-ng:pangoft2_link_hack" ] |
| 59 | 60 |
| (...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 234 if (is_desktop_linux) { | 235 if (is_desktop_linux) { |
| 235 if (use_gtk3) { | 236 if (use_gtk3) { |
| 236 deps += [ "//build/config/linux/gtk3" ] | 237 deps += [ "//build/config/linux/gtk3" ] |
| 237 } else { | 238 } else { |
| 238 deps += [ "//build/config/linux/gtk2" ] | 239 deps += [ "//build/config/linux/gtk2" ] |
| 239 } | 240 } |
| 240 } | 241 } |
| 241 } | 242 } |
| 242 } | 243 } |
| 243 } | 244 } |
| OLD | NEW |