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': 'json',
      9       'product_name': 'skia_json',
     10       'type': 'static_library',
     11       'standalone_static_library': 1,
     12       'dependencies': [
     13         'core.gyp:core',
     14         'jsoncpp.gyp:jsoncpp',
     15       ],
     16       'include_dirs': [
     17         '../include/core',
     18         '../include/effects',
     19         '../include/private',
     20         '../include/utils',
     21         '../src/core',
     22       ],
     23       'sources': [
     24         '../tools/json/SkJSONCanvas.cpp',
     25         '../tools/json/SkJSONRenderer.cpp',
     26       ],
     27     },
     28   ],
     29 }
     30