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

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

Issue 2080723008: [Chromoting] Use device::PowerSaveBlocker to block screen saver (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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
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("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//build/config/win/manifest.gni") 7 import("//build/config/win/manifest.gni")
8 import("//build/util/version.gni") 8 import("//build/util/version.gni")
9 import("//chrome/version.gni") 9 import("//chrome/version.gni")
10 import("//remoting/remoting_enable.gni") 10 import("//remoting/remoting_enable.gni")
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 "//build/config/compiler:wexit_time_destructors", 99 "//build/config/compiler:wexit_time_destructors",
100 "//remoting:version", 100 "//remoting:version",
101 ] 101 ]
102 102
103 defines = [ "WEBRTC_CHROMIUM_BUILD" ] 103 defines = [ "WEBRTC_CHROMIUM_BUILD" ]
104 104
105 deps = [ 105 deps = [
106 "//base:i18n", 106 "//base:i18n",
107 "//components/policy:policy_component_common", 107 "//components/policy:policy_component_common",
108 "//crypto", 108 "//crypto",
109 "//device/power_save_blocker",
109 "//google_apis", 110 "//google_apis",
110 "//ipc", 111 "//ipc",
111 "//remoting/base", 112 "//remoting/base",
112 "//remoting/protocol", 113 "//remoting/protocol",
113 "//remoting/resources", 114 "//remoting/resources",
114 "//ui/base", 115 "//ui/base",
115 "//ui/events:dom_keycode_converter", 116 "//ui/events:dom_keycode_converter",
116 "//ui/events/platform", 117 "//ui/events/platform",
117 ] 118 ]
118 119
(...skipping 1048 matching lines...) Expand 10 before | Expand all | Expand 10 after
1167 rebase_path("$root_gen_dir/installation", root_build_dir), 1168 rebase_path("$root_gen_dir/installation", root_build_dir),
1168 "--target_arch", 1169 "--target_arch",
1169 msi_script_arch, 1170 msi_script_arch,
1170 rebase_path("$root_out_dir/remoting-me2me-host-$current_os.zip", 1171 rebase_path("$root_out_dir/remoting-me2me-host-$current_os.zip",
1171 root_build_dir), 1172 root_build_dir),
1172 rebase_path(outputs[0], root_build_dir), 1173 rebase_path(outputs[0], root_build_dir),
1173 ] 1174 ]
1174 } 1175 }
1175 } 1176 }
1176 } 1177 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698