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

Unified Diff: chrome/gpu/BUILD.gn

Issue 1549473002: Add ArcGpuVideoDecodeAccelerator. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address Pawel's comments Created 4 years, 9 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
Index: chrome/gpu/BUILD.gn
diff --git a/chrome/gpu/BUILD.gn b/chrome/gpu/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..50af78bbce46ab2a24b45e56e25740eb3fd72c70
--- /dev/null
+++ b/chrome/gpu/BUILD.gn
@@ -0,0 +1,19 @@
+# Copyright 2016 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+static_library("gpu") {
+ deps = [
+ "//content/public/gpu",
+ ]
+
+ sources = []
+
+ if (is_chromeos) {
+ sources += [
+ "arc_gpu_video_decode_accelerator.cc",
+ "arc_gpu_video_decode_accelerator.h",
+ "arc_video_accelerator.h",
+ ]
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698