blob: e554df1dcc7c2982a95bb1dfcafb5a4e05b2a686 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Top-level gyp configuration for Skia.
#
# Projects that use Skia should depend on one or more of the targets
# defined here.
#
# More targets are defined within the gyp/ directory, but those are
# not intended for external use and may change without notice.
#
# Full documentation at https://sites.google.com/site/skiadocs/
#
{
'targets': [
{
'target_name': 'alltargets',
'type': 'none',
'dependencies': [
'gyp/everything.gyp:everything',
'gyp/most.gyp:most',
],
},
],
}
|