OLD | NEW |
---|---|
(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("//chromecast/chromecast.gni") | |
brettw
2015/04/21 16:39:09
Blank line before this.
prashantv
2015/04/21 18:21:35
Done.
| |
5 | |
6 config("config") { | |
7 # TODO(gyp) propagate this to webkit for chromecast builds. | |
gunsch
2015/04/21 02:09:43
do defines propagate to all includers if they live
brettw
2015/04/21 16:39:09
These will get applied to all targets with this co
prashantv
2015/04/21 18:21:35
Yes, I was hoping to automatically propagate this
brettw
2015/04/21 19:25:12
No. The closest you can get is to add a public_con
gunsch
2015/04/21 20:58:17
Brett: we need to enable Blink logging in producti
| |
8 defines = [ "LOG_DISABLED=0" ] | |
9 | |
10 if (use_playready) { | |
11 defines += [ "PLAYREADY_CDM_AVAILABLE" ] | |
12 } | |
13 } | |
14 | |
15 # TODO(gyp): Figure out how to propagate config to everything under chromecast. | |
gunsch
2015/04/21 02:09:43
what does this mean? do you mean that args you set
brettw
2015/04/21 16:39:09
See above, just apply the config to all the target
prashantv
2015/04/21 18:21:35
Done.
| |
16 | |
17 component("chromecast") { | |
18 deps = [ | |
19 "//chromecast/base", | |
20 "//chromecast/base/metrics", | |
21 "//chromecast/media", | |
22 ] | |
23 } | |
OLD | NEW |