Home | History | Annotate | Download | only in importlib
      1 # Copyright (c) 2012 Google Inc. All rights reserved.
      2 # Use of this source code is governed by a BSD-style license that can be
      3 # found in the LICENSE file.
      4 
      5 {
      6  'targets': [
      7     {
      8       'target_name': 'test_importlib',
      9       'type': 'shared_library',
     10       'msvs_settings': {
     11         'VCLinkerTool': {
     12           'LinkIncremental': '2',
     13         }
     14       },
     15       'sources': ['has-exports.cc'],
     16     },
     17 
     18     {
     19       'target_name': 'test_linkagainst',
     20       'type': 'executable',
     21       'dependencies': ['test_importlib'],
     22       'msvs_settings': {
     23         'VCLinkerTool': {
     24           'LinkIncremental': '2',
     25         }
     26       },
     27       'sources': ['hello.cc'],
     28     },
     29   ]
     30 }
     31