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 {
      6   'targets': [
      7     {
      8       'target_name': 'skgputest',
      9       'product_name': 'skia_skgputest',
     10       'type': 'static_library',
     11       'standalone_static_library': 1,
     12       'dependencies': [
     13         'skia_lib.gyp:skia_lib',
     14       ],
     15       'include_dirs': [
     16         '../include/gpu',
     17         '../include/private',
     18         '../include/utils',
     19         '../src/core',
     20         '../src/gpu',
     21         '../../src/gpu',
     22       ],
     23       'direct_dependent_settings': {
     24         'include_dirs': [
     25           '../src/gpu',
     26           '../../src/gpu',
     27         ],
     28       },
     29       'sources': [
     30         '<(skia_src_path)/gpu/GrContextFactory.cpp',
     31         '<(skia_src_path)/gpu/GrContextFactory.h',
     32         '<(skia_src_path)/gpu/GrTest.cpp',
     33         '<(skia_src_path)/gpu/GrTest.h',
     34       ],
     35     },
     36   ],
     37 }
     38