blob: 1a8d81bfcc20dd841a8b41acf3a825ccf2e89af5 [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 {
msarettb747b902015-11-06 11:15:49 -080055 'target_name': 'libjpeg-turbo',
scroggo@google.comd4adfa32014-02-05 16:35:12 +000056 'type': 'none',
57 'direct_dependent_settings': {
58 'libraries' : [
msarett54ed1ed2015-12-03 09:48:54 -080059 '-ljpeg',
scroggo@google.comd4adfa32014-02-05 16:35:12 +000060 ],
61 'include_dirs': [
msarettb747b902015-11-06 11:15:49 -080062 'external/libjpeg-turbo',
scroggo@google.comd4adfa32014-02-05 16:35:12 +000063 ],
64 },
65 },
66 {
msarett7869bbf2016-01-25 11:40:02 -080067 'target_name': 'libdng_sdk',
yujieqin916de9f2016-01-25 08:26:16 -080068 'type': 'none',
69 'direct_dependent_settings': {
70 'libraries' : [
71 '-ldng_sdk',
72 ],
73 'include_dirs': [
74 'external/dng_sdk',
75 ],
76 },
77 },
78 {
msarett7869bbf2016-01-25 11:40:02 -080079 'target_name': 'libpiex',
yujieqin916de9f2016-01-25 08:26:16 -080080 'type': 'none',
81 'direct_dependent_settings': {
82 'libraries' : [
83 '-lpiex',
84 ],
85 'include_dirs': [
86 'external/piex',
87 ],
88 },
89 },
90 {
scroggo@google.comd4adfa32014-02-05 16:35:12 +000091 'target_name': 'cpu_features',
92 'type': 'none',
93 },
94 ],
95 }
96 ],
borenet@google.comaf730912012-08-09 15:54:28 +000097 ],
98}