Home | History | Annotate | Download | only in gyp
      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.
      5 # Gyp file for effects
      6 {
      7   'targets': [
      8     {
      9       'target_name': 'effects',
     10       'product_name': 'skia_effects',
     11       'type': 'static_library',
     12       'standalone_static_library': 1,
     13       'dependencies': [
     14         'core.gyp:*',
     15         'images.gyp:*',
     16         'utils.gyp:utils',
     17       ],
     18       'includes': [
     19         'effects.gypi',
     20       ],
     21       'include_dirs': [
     22         '../include/effects',
     23         '../include/client/android',
     24         '../include/private',
     25         '../src/effects',
     26         '../src/opts',
     27         '../src/core',
     28       ],
     29       'direct_dependent_settings': {
     30         'include_dirs': [
     31           '../include/effects',
     32           '../include/client/android',
     33         ],
     34       },
     35       'sources': [
     36         'effects.gypi', # Makes the gypi appear in IDEs (but does not modify the build).
     37       ],
     38       'conditions': [
     39         ['skia_gpu == 1', {
     40           'include_dirs': [
     41             '../include/gpu',
     42             '../src/gpu',
     43           ],
     44         }],
     45       ],
     46     },
     47   ],
     48 }
     49