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

Unified Diff: media/ffmpeg/BUILD.gn

Issue 1944183002: Add BUILD.gn for //media/ffmpeg (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add config + rebase Created 4 years, 7 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 | « media/base/BUILD.gn ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/ffmpeg/BUILD.gn
diff --git a/media/ffmpeg/BUILD.gn b/media/ffmpeg/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..5b1c716c27116e74b54ac13779d572e2b9c058af
--- /dev/null
+++ b/media/ffmpeg/BUILD.gn
@@ -0,0 +1,53 @@
+# 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.
+
+import("//media/media_options.gni")
+
+assert(media_use_ffmpeg)
+
+source_set("ffmpeg") {
+ visibility = [ "//media/*" ]
+ allow_circular_includes_from = [ "//media/base" ]
+ configs += [ "//media/base:base_config" ]
+ sources = [
+ "ffmpeg_common.cc",
+ "ffmpeg_common.h",
+ "ffmpeg_deleters.h",
+ ]
+ deps = [
+ "//base",
+ "//media:media_features",
+ "//media:shared_memory_support",
+ "//media/base",
+ "//third_party/ffmpeg",
+ ]
+}
+
+source_set("ffmpeg_unittests") {
+ testonly = true
+ sources = [
+ "ffmpeg_common_unittest.cc",
+ ]
+ deps = [
+ "//base",
+ "//media",
+ "//media/base:test_support",
+ "//testing/gtest",
+ "//third_party/ffmpeg",
+ ]
+}
+
+source_set("ffmpeg_regression_tests") {
+ testonly = true
+ sources = [
+ "ffmpeg_regression_tests.cc",
+ ]
+ deps = [
+ "//base",
+ "//media",
+ "//media/test:pipeline_integration_test_base",
+ "//testing/gmock",
+ "//third_party/ffmpeg",
+ ]
+}
« no previous file with comments | « media/base/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698