diff options
Diffstat (limited to 'chromium/chromecast/BUILD.gn')
-rw-r--r-- | chromium/chromecast/BUILD.gn | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/chromium/chromecast/BUILD.gn b/chromium/chromecast/BUILD.gn new file mode 100644 index 00000000000..6169cf86808 --- /dev/null +++ b/chromium/chromecast/BUILD.gn @@ -0,0 +1,21 @@ +# 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") + +config("config") { + defines = [] + + if (use_playready) { + defines += [ "PLAYREADY_CDM_AVAILABLE" ] + } +} + +component("chromecast") { + deps = [ + "//chromecast/base", + "//chromecast/base/metrics", + "//chromecast/media", + ] +} |