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

Unified Diff: chromecast/browser/media/BUILD.gn

Issue 1213333003: Build public cast_shell on x86 with GN. (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: Address linux-specific deps. Created 5 years, 4 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 | « chromecast/browser/BUILD.gn ('k') | chromecast/build/args.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromecast/browser/media/BUILD.gn
diff --git a/chromecast/browser/media/BUILD.gn b/chromecast/browser/media/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..74b6754969f6638bf0d4bd8414ca868dec76aeec
--- /dev/null
+++ b/chromecast/browser/media/BUILD.gn
@@ -0,0 +1,32 @@
+# 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("//chromecast/chromecast.gni")
+
+source_set("media") {
+ sources = [
+ "cast_browser_cdm_factory.cc",
+ "cast_browser_cdm_factory.h",
+ "cast_media_client_android.cc",
+ "cast_media_client_android.h",
+ "cma_message_filter_host.cc",
+ "cma_message_filter_host.h",
+ "media_pipeline_host.cc",
+ "media_pipeline_host.h",
+ ]
+
+ if (chromecast_branding == "public" && !is_android) {
+ sources += [ "cast_browser_cdm_factory_simple.cc" ]
+ }
+
+ deps = [
+ "//base",
+ "//chromecast/common/media",
+ "//chromecast/media",
+ "//chromecast/public",
+ "//content/public/browser",
+ "//media",
+ "//ui/gfx/geometry",
+ ]
+}
« no previous file with comments | « chromecast/browser/BUILD.gn ('k') | chromecast/build/args.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698