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

Unified Diff: third_party/openh264/testing/BUILD.gn

Issue 1446453004: Adding third_party/openh264 build files for encoding (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed torbjorng's comments Created 5 years, 1 month 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: third_party/openh264/testing/BUILD.gn
diff --git a/third_party/openh264/testing/BUILD.gn b/third_party/openh264/testing/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..fcc71ddba04fbf9afeb4f22d545496593fbc54f2
--- /dev/null
+++ b/third_party/openh264/testing/BUILD.gn
@@ -0,0 +1,26 @@
+# Copyright 2015 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.
+
+import("//third_party/openh264/openh264_args.gni")
+
+if (use_openh264) {
+ static_library("openh264_testing") {
Dirk Pranke 2015/11/19 02:46:56 same comments about source_set vs. static_library
hbos_chromium 2015/11/19 13:00:43 Done.
+ deps = [
+ "//third_party/webrtc/common_video:common_video",
+ "//third_party/openh264:openh264_encoder",
+ "//third_party/openh264:openh264_decoder",
+ ]
+ include_dirs = [ "//" ]
+ sources = [
+ "h264_codec_tester.cc",
+ "h264_codec_tester.h",
+ "h264_decoder_impl.cc",
+ "h264_decoder_impl.h",
+ "h264_encoder_impl.cc",
+ "h264_encoder_impl.h",
+ "i420_utils.cc",
+ "i420_utils.h",
+ ]
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698