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

Side by Side Diff: chromecast/renderer/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 unified diff | Download patch
« no previous file with comments | « chromecast/graphics/BUILD.gn ('k') | chromecast/renderer/media/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
5 import("//chromecast/chromecast.gni")
6
7 source_set("renderer") {
8 sources = [
9 "cast_content_renderer_client.cc",
10 "cast_content_renderer_client.h",
11 "cast_media_load_deferrer.cc",
12 "cast_media_load_deferrer.h",
13 "cast_render_process_observer.cc",
14 "cast_render_process_observer.h",
15 "key_systems_cast.cc",
16 "key_systems_cast.h",
17 ]
18
19 if (chromecast_branding == "public") {
20 sources += [ "cast_content_renderer_client_simple.cc" ]
21 }
22
23 if (!is_android) {
24 public_deps = [
25 "//chromecast/renderer/media",
26 ]
27 }
28
29 deps = [
30 "//base",
31 "//chromecast/base",
32 "//chromecast/crash",
33 "//chromecast/common/media",
34 "//chromecast/media",
35 "//components/cdm/renderer",
36 "//components/network_hints/renderer",
37 "//content/public/common",
38 "//content/public/renderer",
39 "//crypto",
40 "//ipc",
41 "//media",
42 "//third_party/widevine/cdm:version_h",
43 ]
44 }
OLDNEW
« no previous file with comments | « chromecast/graphics/BUILD.gn ('k') | chromecast/renderer/media/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698