blob: ceecb062bceb9e3643eb9e5b0fea136c9c4882dc [file] [log] [blame]
scroggo3e562272015-03-25 10:22:41 -07001# Copyright 2015 Google Inc.
2#
3# Use of this source code is governed by a BSD-style license that can be
4# found in the LICENSE file.
msarett6d0e7b22015-03-30 07:52:52 -07005
borenet@google.comaf730912012-08-09 15:54:28 +00006# This GYP file stores the dependencies necessary to build Skia on the Android
7# platform. The OS doesn't provide many stable libraries as part of the
rmistry@google.comd6176b02012-08-23 18:14:13 +00008# distribution so we have to build a few of them ourselves.
borenet@google.comaf730912012-08-09 15:54:28 +00009#
rmistry@google.comd6176b02012-08-23 18:14:13 +000010# We tried adding this gyp file to the android directory at the root of
borenet@google.comaf730912012-08-09 15:54:28 +000011# the Skia repo, but that resulted in the generated makefiles being created
12# outside of the intended output directory. So to avoid this we created a simple
13# shim here that includes the android_deps.gypi file. The actual dependencies
rmistry@google.comd6176b02012-08-23 18:14:13 +000014# are defined and maintained in that gypi file.
15#
borenet@google.comaf730912012-08-09 15:54:28 +000016# Also this assumes that the android directory is a sibling to the directory
17# that contains your primary Skia checkout. If it is not then you must manually
18# edit the includes below to specify the actual location of the android.gypi.
19# This is due to the fact that we cannot use variables in an includes as the
rmistry@google.comd6176b02012-08-23 18:14:13 +000020# variable expansion step for gyp happens after the includes are processed.
borenet@google.comaf730912012-08-09 15:54:28 +000021{
scroggo@google.comd4adfa32014-02-05 16:35:12 +000022 'conditions': [
23 [ 'skia_android_framework == 0',
24 {
25 'includes': [
26 '../platform_tools/android/gyp/dependencies.gypi',
27 ],
28 }, { # else skia_android_framework
29 'cflags': [
30 '-Wno-error'
31 ],
32 'targets': [
33 {
34 'target_name': 'expat',
35 'type': 'none',
36 'direct_dependent_settings': {
37 'libraries' : [
38 '-lexpat',
39 ],
40 },
41 },
42 {
scroggo@google.comd4adfa32014-02-05 16:35:12 +000043 'target_name': 'png',
44 'type': 'none',
45 'direct_dependent_settings': {
46 'libraries' : [
47 '-lpng',
48 ],
49 'include_dirs': [
50 'external/libpng',
51 ],
52 },
53 },
54 {
55 'target_name': 'jpeg',
56 'type': 'none',
57 'direct_dependent_settings': {
58 'libraries' : [
59 '-ljpeg',
60 ],
61 'include_dirs': [
62 'external/jpeg',
63 ],
64 },
65 },
66 {
67 'target_name': 'cpu_features',
68 'type': 'none',
69 },
70 ],
71 }
72 ],
borenet@google.comaf730912012-08-09 15:54:28 +000073 ],
74}