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

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: add max_time 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
« no previous file with comments | « media/mojo/interfaces/media_types.mojom ('k') | media/mojo/services/media_type_converters.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..2288fb6f23dfb047338d0819b3c67f8bfff19546
--- /dev/null
+++ b/media/mojo/services/BUILD.gn
@@ -0,0 +1,36 @@
+# 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"
+ ]
+}
« no previous file with comments | « media/mojo/interfaces/media_types.mojom ('k') | media/mojo/services/media_type_converters.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698