blob: 1fc86999b61da6c60da27f05541a25a26bc2da9d [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.com7d8013f2013-11-20 21:40:57 +00005# GYP file to build experimental directory.
epoger@google.comae85aea2011-05-31 13:50:51 +00006{
epoger@google.comae85aea2011-05-31 13:50:51 +00007 'targets': [
8 {
9 'target_name': 'experimental',
10 'type': 'static_library',
bungeman@google.com5a64e582012-03-29 14:51:56 +000011 'include_dirs': [
12 '../include/config',
13 '../include/core',
epoger@google.comae85aea2011-05-31 13:50:51 +000014 ],
15 'sources': [
epoger@google.comae85aea2011-05-31 13:50:51 +000016 '../experimental/SkSetPoly3To3.cpp',
17 '../experimental/SkSetPoly3To3_A.cpp',
18 '../experimental/SkSetPoly3To3_D.cpp',
19 ],
epoger@google.comae85aea2011-05-31 13:50:51 +000020 'direct_dependent_settings': {
21 'include_dirs': [
22 '../experimental',
23 ],
24 },
25 },
epoger@google.comae85aea2011-05-31 13:50:51 +000026 ],
halcanary7d825f82016-03-09 11:26:50 -080027 'conditions': [
28 ['skia_os == "mac"',
29 {
30 'targets': [
31 {
32 'target_name': 'coreGraphicsPdf2png',
33 'type': 'executable',
34 'include_dirs': [ '../src/core', ],
35 'sources': [ '../experimental/tools/coreGraphicsPdf2png.cpp', ],
36 'dependencies': [ 'skia_lib.gyp:skia_lib', ]
37 },
38 ],
39 },
40 ],
41 ],
epoger@google.comae85aea2011-05-31 13:50:51 +000042}