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

Side by Side Diff: chromecast/media/base/BUILD.gn

Issue 1055173005: Add BUILD.gn files for chromecast/media (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 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 unified diff | Download patch
OLDNEW
(Empty)
1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4 import("//build/config/crypto.gni")
gunsch 2015/04/21 02:09:43 nit: blank line above
prashantv 2015/04/21 18:21:36 Done.
5 import("//chromecast/chromecast.gni")
6
7 component("base") {
8 sources = [
9 "decrypt_context.cc",
10 "decrypt_context.h",
11 "decrypt_context_clearkey.cc",
12 "decrypt_context_clearkey.h",
13 "key_systems_common.cc",
14 "key_systems_common.h",
15 "media_caps.cc",
16 "media_caps.h",
17 "switching_media_renderer.cc",
18 "switching_media_renderer.h",
19 ]
20
21 deps = [
22 "//base",
23 "//crypto",
24 "//crypto:platform",
25 "//third_party/widevine/cdm:version_h",
26 ]
27
28 configs += [ "//chromecast:config" ]
29
30 if (chromecast_branding == "Chrome") {
31 deps += [
32 # TODO(gyp): add dependency on internal/chromecast_internal:media_base_int ernal
33 ]
34 } else {
35 sources += [ "key_systems_common_simple.cc" ]
36 }
37 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698