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

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

Issue 2712983004: Simplify/Cleanup MediaClient (Closed)
Patch Set: Created 3 years, 9 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
1 # Copyright 2015 The Chromium Authors. All rights reserved. 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 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 source_set("media") { 5 source_set("media") {
6 sources = [ 6 sources = [
7 "cast_media_client.cc",
8 "cast_media_client.h",
7 "media_caps_observer_impl.cc", 9 "media_caps_observer_impl.cc",
8 "media_caps_observer_impl.h", 10 "media_caps_observer_impl.h",
9 ] 11 ]
10 12
11 deps = [ 13 deps = [
14 "//base",
12 "//chromecast/common/media:interfaces", 15 "//chromecast/common/media:interfaces",
13 "//chromecast/media", 16 "//chromecast/media",
17 "//chromecast/media/cdm",
18 "//chromecast/public:public",
19 "//content/public/renderer",
20 "//media",
14 "//ui/gfx/geometry", 21 "//ui/gfx/geometry",
15 ] 22 ]
16 } 23 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698