1 { 2 'targets': [ 3 { 4 'target_name': 'effects', 5 'product_name': 'skia_effects', 6 'type': 'static_library', 7 'standalone_static_library': 1, 8 'includes': [ 9 'effects.gypi', 10 ], 11 'include_dirs': [ 12 '../include/effects', 13 '../src/core', 14 ], 15 'direct_dependent_settings': { 16 'include_dirs': [ 17 '../include/effects', 18 ], 19 }, 20 'dependencies': [ 21 'skia_base_libs.gyp:skia_base_libs', 22 ], 23 'sources': [ 24 'effects.gypi', # Makes the gypi appear in IDEs (but does not modify the build). 25 ], 26 'conditions': [ 27 ['skia_gpu == 1', { 28 'include_dirs': [ 29 '../src/gpu', 30 ], 31 }], 32 ], 33 }, 34 ], 35 } 36 37 # Local Variables: 38 # tab-width:2 39 # indent-tabs-mode:nil 40 # End: 41 # vim: set expandtab tabstop=2 shiftwidth=2: 42