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

Unified Diff: media/mojo/services/BUILD.gn

Issue 491733004: media: add basic MediaRenderer mojom and TypeConverters (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: review Created 6 years, 3 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: media/mojo/services/BUILD.gn
diff --git a/media/mojo/services/BUILD.gn b/media/mojo/services/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..dd950950e682cb2b5e08956b3e86b55c3a8c6442
--- /dev/null
+++ b/media/mojo/services/BUILD.gn
@@ -0,0 +1,37 @@
+# Copyright 2014 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("//mojo/system.gni")
+
+# GYP version: media/media.gyp:mojo_media_lib
+source_set("lib") {
+ deps = [
+ "//base",
+ "//media",
+ "//media/mojo/interfaces"
+ "//mojo/common",
+ "//mojo/environment:chromium",
+ ]
+
+ deps += mojo_system_for_component
+
+ sources = [
+ "media_type_converters.cc",
+ "media_type_converters.h",
+ ]
+}
+
+test("mojo_media_lib_unittests") {
+ sources = [
+ "media_type_converters_unittest.cc",
+ ]
+
+ deps = [
+ "//base/test:test_support",
+ "//mojo/environment:chromium",
+ "//testing/gtest",
+ ":lib"
+ ]
+}
+

Powered by Google App Engine
This is Rietveld 408576698