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

Unified Diff: content/common/BUILD.gn

Issue 825163004: Add Vaapi support on Ozone/Freon (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: Fix const issue Created 6 years 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/common/gpu/media/DEPS » ('j') | content/common/gpu/media/rendering_helper.cc » ('J')
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 8cec06a92fa544b10714aa124caea78d4dead017..2ce16acc74950cb1e1743d9a3f3a1c5f2b8647b4 100644
--- a/content/common/BUILD.gn
+++ b/content/common/BUILD.gn
@@ -21,6 +21,9 @@ if (is_chromeos && cpu_arch != "arm") {
if (use_x11) {
sources += [ "gpu/media/va_x11.sigs" ]
}
+ if (use_ozone) {
+ sources += [ "gpu/media/va_drm.sigs" ]
+ }
stubs_filename_root = "va_stubs"
outputs = [
@@ -329,6 +332,12 @@ source_set("common") {
"gpu/media/vaapi_tfp_picture.h",
]
}
+ if (use_ozone) {
+ sources += [
+ "gpu/media/vaapi_drm_picture.cc",
+ "gpu/media/vaapi_drm_picture.h",
+ ]
+ }
}
}
« no previous file with comments | « no previous file | content/common/gpu/media/DEPS » ('j') | content/common/gpu/media/rendering_helper.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698