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

Unified Diff: base/BUILD.gn

Issue 644783005: The DisplayVirtualKeyboard function on Windows 8 and beyond should not be displaying the OSK if a p… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix build error Created 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | base/base.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/BUILD.gn
diff --git a/base/BUILD.gn b/base/BUILD.gn
index d783ee0bf7ba6ec441d517093e1cebf1c0890ce0..838c7e9eb108b82287f3d7de4c92dc89d4aa0759 100644
--- a/base/BUILD.gn
+++ b/base/BUILD.gn
@@ -850,11 +850,15 @@ component("base") {
#cflags = [ "/wd4267" ]
libs = [
+ "cfgmgr32.lib",
"netapi32.lib",
"powrprof.lib",
+ "setupapi.lib",
]
ldflags = [
+ "/DELAYLOAD:cfgmgr32.dll",
"/DELAYLOAD:powrprof.dll",
+ "/DELAYLOAD:setupapi.dll",
]
} else if (!is_nacl) {
# Non-Windows.
« no previous file with comments | « no previous file | base/base.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698