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

Unified Diff: content/common/BUILD.gn

Issue 828853004: Fix some errors in GN files for content. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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 | content/test/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/BUILD.gn
diff --git a/content/common/BUILD.gn b/content/common/BUILD.gn
index 7a783b0085672dc75db8a1d8c0a12c1d83623168..ce5ac158df6f571393e16fd4e87eb07ba94bacb3 100644
--- a/content/common/BUILD.gn
+++ b/content/common/BUILD.gn
@@ -354,6 +354,20 @@ source_set("common") {
]
include_dirs += [ "//third_party/khronos" ]
deps += [ "//ui/gl" ]
+ libs += [
+ "d3d9.lib",
Slava Chigrin 2015/01/13 19:17:00 Done like this code in GYP https://code.google.com
+ "dxva2.lib",
+ "strmiids.lib",
+ "mf.lib",
+ "mfplat.lib",
+ "mfuuid.lib",
+ ]
+ ldflags += [
+ "/DELAYLOAD:d3d9.dll",
+ "/DELAYLOAD:dxva2.dll",
+ "/DELAYLOAD:mf.dll",
+ "/DELAYLOAD:mfplat.dll",
+ ]
# TODO(GYP): extract_xinput action.
}
« no previous file with comments | « no previous file | content/test/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698