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

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

Issue 2384063008: Enables delegating signal strategy for It2Me Host. (Closed)
Patch Set: Fix typos Created 4 years, 2 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/client/plugin/delegating_signal_strategy.cc ('k') | remoting/host/it2me/it2me_host.h » ('j') | 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 29 matching lines...) Expand all
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
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 }
OLDNEW
« no previous file with comments | « remoting/client/plugin/delegating_signal_strategy.cc ('k') | remoting/host/it2me/it2me_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698