scroggo | 3e56227 | 2015-03-25 10:22:41 -0700 | [diff] [blame] | 1 | # 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. |
epoger@google.com | 51c078b | 2011-05-31 19:02:37 +0000 | [diff] [blame] | 5 | # Core Skia library code. |
bsalomon@google.com | a9681db | 2011-03-21 13:34:23 +0000 | [diff] [blame] | 6 | { |
bsalomon@google.com | a9681db | 2011-03-21 13:34:23 +0000 | [diff] [blame] | 7 | 'targets': [ |
| 8 | { |
epoger@google.com | 51c078b | 2011-05-31 19:02:37 +0000 | [diff] [blame] | 9 | 'target_name': 'core', |
borenet@google.com | efb1d77 | 2012-10-10 19:45:51 +0000 | [diff] [blame] | 10 | 'product_name': 'skia_core', |
bsalomon@google.com | a9681db | 2011-03-21 13:34:23 +0000 | [diff] [blame] | 11 | 'type': 'static_library', |
borenet@google.com | efb1d77 | 2012-10-10 19:45:51 +0000 | [diff] [blame] | 12 | 'standalone_static_library': 1, |
bsalomon@google.com | a9681db | 2011-03-21 13:34:23 +0000 | [diff] [blame] | 13 | 'msvs_guid': 'B7760B5E-BFA8-486B-ACFD-49E3A6DE8E76', |
bsalomon@google.com | a9681db | 2011-03-21 13:34:23 +0000 | [diff] [blame] | 14 | |
reed@google.com | baa5d94 | 2012-08-08 20:39:17 +0000 | [diff] [blame] | 15 | 'includes': [ |
| 16 | 'core.gypi', |
bsalomon@google.com | a9681db | 2011-03-21 13:34:23 +0000 | [diff] [blame] | 17 | ], |
reed@google.com | baa5d94 | 2012-08-08 20:39:17 +0000 | [diff] [blame] | 18 | |
bsalomon@google.com | a9681db | 2011-03-21 13:34:23 +0000 | [diff] [blame] | 19 | 'include_dirs': [ |
reed | e332396 | 2014-10-24 11:16:19 -0700 | [diff] [blame] | 20 | '../include/c', |
bsalomon@google.com | a9681db | 2011-03-21 13:34:23 +0000 | [diff] [blame] | 21 | '../include/config', |
| 22 | '../include/core', |
caryclark@google.com | 45a75fb | 2013-04-25 13:34:40 +0000 | [diff] [blame] | 23 | '../include/pathops', |
scroggo@google.com | 5af9b20 | 2012-06-04 17:17:36 +0000 | [diff] [blame] | 24 | '../include/pipe', |
bsalomon@google.com | a9681db | 2011-03-21 13:34:23 +0000 | [diff] [blame] | 25 | '../include/ports', |
mtklein | cd1f2da | 2015-07-28 08:55:14 -0700 | [diff] [blame] | 26 | '../include/private', |
humper@google.com | 7af56be | 2013-01-14 18:49:19 +0000 | [diff] [blame] | 27 | '../include/utils', |
halcanary | ea4673f | 2014-08-18 08:27:09 -0700 | [diff] [blame] | 28 | '../include/images', |
bsalomon@google.com | a9681db | 2011-03-21 13:34:23 +0000 | [diff] [blame] | 29 | '../src/core', |
vandebo | 0f9bad0 | 2014-06-19 11:05:39 -0700 | [diff] [blame] | 30 | '../src/sfnt', |
reed@google.com | 97af1a6 | 2012-08-28 12:19:02 +0000 | [diff] [blame] | 31 | '../src/image', |
mtklein | 887f397 | 2014-06-17 12:08:15 -0700 | [diff] [blame] | 32 | '../src/opts', |
| 33 | '../src/utils', |
bsalomon@google.com | a9681db | 2011-03-21 13:34:23 +0000 | [diff] [blame] | 34 | ], |
bsalomon@google.com | 202a51b | 2012-09-04 14:37:12 +0000 | [diff] [blame] | 35 | 'sources': [ |
| 36 | 'core.gypi', # Makes the gypi appear in IDEs (but does not modify the build). |
| 37 | ], |
bsalomon@google.com | a9681db | 2011-03-21 13:34:23 +0000 | [diff] [blame] | 38 | 'msvs_disabled_warnings': [4244, 4267,4345, 4390, 4554, 4800], |
| 39 | 'conditions': [ |
borenet@google.com | 05d550e | 2013-06-11 15:52:19 +0000 | [diff] [blame] | 40 | [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "chromeos"]', { |
bsalomon@google.com | a9681db | 2011-03-21 13:34:23 +0000 | [diff] [blame] | 41 | 'link_settings': { |
| 42 | 'libraries': [ |
senorblanco@chromium.org | 7eb492e | 2011-03-25 17:41:34 +0000 | [diff] [blame] | 43 | '-lpthread', |
bsalomon@google.com | a9681db | 2011-03-21 13:34:23 +0000 | [diff] [blame] | 44 | ], |
bsalomon@google.com | 9182610 | 2011-03-21 19:51:57 +0000 | [diff] [blame] | 45 | }, |
bsalomon@google.com | a9681db | 2011-03-21 13:34:23 +0000 | [diff] [blame] | 46 | }], |
epoger@google.com | 8846cb2 | 2011-07-01 20:20:07 +0000 | [diff] [blame] | 47 | [ 'skia_os == "mac"', { |
bsalomon@google.com | a9681db | 2011-03-21 13:34:23 +0000 | [diff] [blame] | 48 | 'include_dirs': [ |
| 49 | '../include/utils/mac', |
| 50 | ], |
| 51 | 'sources': [ |
bsalomon@google.com | a9681db | 2011-03-21 13:34:23 +0000 | [diff] [blame] | 52 | '../include/utils/mac/SkCGUtils.h', |
bsalomon@google.com | a9681db | 2011-03-21 13:34:23 +0000 | [diff] [blame] | 53 | ], |
epoger@google.com | 0a030cd | 2011-06-02 19:52:14 +0000 | [diff] [blame] | 54 | 'link_settings': { |
| 55 | 'libraries': [ |
yangsu@google.com | ccb74ea | 2011-06-21 13:09:32 +0000 | [diff] [blame] | 56 | '$(SDKROOT)/System/Library/Frameworks/ApplicationServices.framework', |
epoger@google.com | 0a030cd | 2011-06-02 19:52:14 +0000 | [diff] [blame] | 57 | ], |
| 58 | }, |
bsalomon@google.com | a9681db | 2011-03-21 13:34:23 +0000 | [diff] [blame] | 59 | }], |
epoger@google.com | ea5dfa8 | 2011-07-01 21:01:32 +0000 | [diff] [blame] | 60 | [ 'skia_os == "ios"', { |
| 61 | 'include_dirs': [ |
| 62 | '../include/utils/ios', |
| 63 | ], |
| 64 | 'sources': [ |
epoger@google.com | ea5dfa8 | 2011-07-01 21:01:32 +0000 | [diff] [blame] | 65 | '../include/utils/mac/SkCGUtils.h', |
epoger@google.com | ea5dfa8 | 2011-07-01 21:01:32 +0000 | [diff] [blame] | 66 | ], |
| 67 | 'link_settings': { |
| 68 | 'libraries': [ |
bsalomon@google.com | 4663822 | 2012-10-04 12:52:03 +0000 | [diff] [blame] | 69 | '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework', |
| 70 | '$(SDKROOT)/System/Library/Frameworks/CoreGraphics.framework', |
| 71 | '$(SDKROOT)/System/Library/Frameworks/CoreText.framework', |
| 72 | '$(SDKROOT)/System/Library/Frameworks/UIKit.framework', |
| 73 | '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', |
| 74 | '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework', |
| 75 | '$(SDKROOT)/System/Library/Frameworks/OpenGLES.framework', |
| 76 | '$(SDKROOT)/System/Library/Frameworks/ImageIO.framework', |
| 77 | '$(SDKROOT)/System/Library/Frameworks/MobileCoreServices.framework', |
epoger@google.com | ea5dfa8 | 2011-07-01 21:01:32 +0000 | [diff] [blame] | 78 | ], |
| 79 | }, |
| 80 | }], |
epoger@google.com | 8846cb2 | 2011-07-01 20:20:07 +0000 | [diff] [blame] | 81 | [ 'skia_os == "win"', { |
bsalomon@google.com | a9681db | 2011-03-21 13:34:23 +0000 | [diff] [blame] | 82 | 'include_dirs': [ |
| 83 | 'config/win', |
| 84 | ], |
senorblanco@chromium.org | c1587e0 | 2011-05-04 18:59:38 +0000 | [diff] [blame] | 85 | }], |
djsollen@google.com | 52f0297 | 2013-06-03 12:10:19 +0000 | [diff] [blame] | 86 | [ 'skia_os == "android"', { |
djsollen@google.com | 6a6c80c | 2013-08-05 13:38:28 +0000 | [diff] [blame] | 87 | 'dependencies': [ |
| 88 | 'android_deps.gyp:cpu_features', |
| 89 | ], |
djsollen@google.com | 52f0297 | 2013-06-03 12:10:19 +0000 | [diff] [blame] | 90 | }], |
djsollen@google.com | 6a6c80c | 2013-08-05 13:38:28 +0000 | [diff] [blame] | 91 | [ 'skia_arch_type == "arm"', { |
digit@google.com | eec9dbc | 2012-05-30 13:54:41 +0000 | [diff] [blame] | 92 | # The code in SkUtilsArm.cpp can be used on an ARM-based Linux system, not only Android. |
| 93 | 'sources': [ |
| 94 | '../src/core/SkUtilsArm.cpp', |
digit@google.com | fbf3194 | 2012-08-01 15:58:41 +0000 | [diff] [blame] | 95 | '../src/core/SkUtilsArm.h', |
digit@google.com | eec9dbc | 2012-05-30 13:54:41 +0000 | [diff] [blame] | 96 | ], |
| 97 | }], |
bsalomon@google.com | e197cbf | 2013-01-14 16:46:26 +0000 | [diff] [blame] | 98 | ['skia_gpu == 1', { |
| 99 | 'include_dirs': [ |
bsalomon | 4beef91 | 2014-07-28 13:43:02 -0700 | [diff] [blame] | 100 | '../include/gpu', |
| 101 | '../src/gpu', |
bsalomon@google.com | e197cbf | 2013-01-14 16:46:26 +0000 | [diff] [blame] | 102 | ], |
| 103 | }], |
bsalomon@google.com | a9681db | 2011-03-21 13:34:23 +0000 | [diff] [blame] | 104 | ], |
| 105 | 'direct_dependent_settings': { |
| 106 | 'include_dirs': [ |
reed | e332396 | 2014-10-24 11:16:19 -0700 | [diff] [blame] | 107 | '../include/c', |
bsalomon@google.com | a9681db | 2011-03-21 13:34:23 +0000 | [diff] [blame] | 108 | '../include/config', |
| 109 | '../include/core', |
caryclark@google.com | 45a75fb | 2013-04-25 13:34:40 +0000 | [diff] [blame] | 110 | '../include/pathops', |
scroggo@google.com | 5af9b20 | 2012-06-04 17:17:36 +0000 | [diff] [blame] | 111 | '../include/pipe', |
bsalomon@google.com | a9681db | 2011-03-21 13:34:23 +0000 | [diff] [blame] | 112 | ], |
borenet@google.com | efb1d77 | 2012-10-10 19:45:51 +0000 | [diff] [blame] | 113 | 'conditions': [ |
| 114 | [ 'skia_os == "mac"', { |
| 115 | 'include_dirs': [ |
| 116 | '../include/utils/mac', |
borenet@google.com | efb1d77 | 2012-10-10 19:45:51 +0000 | [diff] [blame] | 117 | ], |
| 118 | }], |
| 119 | [ 'skia_os == "ios"', { |
| 120 | 'include_dirs': [ |
| 121 | '../include/utils/ios', |
| 122 | ], |
| 123 | }], |
| 124 | [ 'skia_os == "win"', { |
| 125 | 'include_dirs': [ |
| 126 | 'config/win', |
| 127 | ], |
| 128 | }], |
| 129 | ], |
bsalomon@google.com | a9681db | 2011-03-21 13:34:23 +0000 | [diff] [blame] | 130 | }, |
bsalomon@google.com | a9681db | 2011-03-21 13:34:23 +0000 | [diff] [blame] | 131 | }, |
bsalomon@google.com | a9681db | 2011-03-21 13:34:23 +0000 | [diff] [blame] | 132 | ], |
| 133 | } |