blob: 154e5676c5e55e9617328e4e93d92b648ed0c785 [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.
scroggo@google.comf1754ec2013-06-28 21:32:00 +00005# Gyp file for effects
epoger@google.comae85aea2011-05-31 13:50:51 +00006{
epoger@google.comae85aea2011-05-31 13:50:51 +00007 'targets': [
8 {
9 'target_name': 'effects',
borenet@google.comefb1d772012-10-10 19:45:51 +000010 'product_name': 'skia_effects',
epoger@google.comae85aea2011-05-31 13:50:51 +000011 'type': 'static_library',
borenet@google.comefb1d772012-10-10 19:45:51 +000012 'standalone_static_library': 1,
bungeman@google.comb8f36552013-07-22 14:39:45 +000013 'dependencies': [
14 'core.gyp:*',
15 'images.gyp:*',
tomhudsonf7edcde2015-03-23 12:51:20 -070016 'utils.gyp:utils',
bungeman@google.comb8f36552013-07-22 14:39:45 +000017 ],
senorblanco@chromium.orgf6100c32012-08-20 20:56:26 +000018 'includes': [
19 'effects.gypi',
20 ],
epoger@google.comae85aea2011-05-31 13:50:51 +000021 'include_dirs': [
epoger@google.comae85aea2011-05-31 13:50:51 +000022 '../include/effects',
humper@google.com3aad3b02013-09-04 19:23:53 +000023 '../src/effects',
senorblanco@chromium.org7a47ad32013-10-30 21:57:04 +000024 '../src/opts',
djsollen@google.com21830d92012-08-07 19:49:41 +000025 '../src/core',
epoger@google.comae85aea2011-05-31 13:50:51 +000026 ],
epoger@google.comae85aea2011-05-31 13:50:51 +000027 'direct_dependent_settings': {
28 'include_dirs': [
29 '../include/effects',
30 ],
31 },
bsalomon@google.com202a51b2012-09-04 14:37:12 +000032 'sources': [
33 'effects.gypi', # Makes the gypi appear in IDEs (but does not modify the build).
34 ],
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +000035 'conditions': [
36 ['skia_gpu == 1', {
37 'include_dirs': [
djsollen@google.com52f02972013-06-03 12:10:19 +000038 '../include/gpu',
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +000039 '../src/gpu',
40 ],
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +000041 }],
borenet@google.com7ef39292012-07-18 14:59:54 +000042 ],
epoger@google.comae85aea2011-05-31 13:50:51 +000043 },
44 ],
45}