blob: da0cdff8b8784f095e32efcd3991f35d12311825 [file] [log] [blame]
ethannicholasb3058bd2016-07-01 08:22:01 -07001# Copyright 2016 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.
5{
6 'targets': [
7 {
8 'target_name': 'sksl',
9 'type': 'static_library',
10 'standalone_static_library': 1,
Mike Kleina5fb6152016-10-26 14:17:04 -040011 'sources': [ '<!@(python read_gni.py ../gn/sksl.gni skia_sksl_sources)' ],
12 'include_dirs': [
Ethan Nicholas9e1138d2016-11-21 10:39:35 -050013 '../include/config',
14 '../include/core',
15 '../include/gpu',
16 '../include/private',
17 '../include/utils',
18 '../src/core',
19 '../src/gpu',
20 '../src/sksl',
21 '../src/utils',
Mike Kleina5fb6152016-10-26 14:17:04 -040022 ],
ethannicholasb3058bd2016-07-01 08:22:01 -070023 'defines': [
24 'SKIA'
25 ],
26 'all_dependent_settings': {
27 'include_dirs': [
ethannicholas5961bc92016-10-12 06:39:56 -070028 '<(skia_src_path)/sksl',
ethannicholasb3058bd2016-07-01 08:22:01 -070029 ],
30 },
31 },
32 ],
33}