Home | History | Annotate | Download | only in vs-macros
      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_slash_trailing',
      9       'type': 'none',
     10       'msvs_cygwin_shell': '0',
     11       'actions': [
     12         {
     13           'action_name': 'root',
     14           'inputs': [],
     15           'outputs': ['out1'],
     16           'action': ['python', 'test_exists.py', '$(VCInstallDir)', 'out1']
     17         },
     18       ],
     19     },
     20     {
     21       'target_name': 'test_slash_dir',
     22       'type': 'none',
     23       'msvs_cygwin_shell': '0',
     24       'actions': [
     25         {
     26           'action_name': 'bin',
     27           'inputs': [],
     28           'outputs': ['out2'],
     29           'action': ['python', 'test_exists.py', '$(VCInstallDir)bin', 'out2'],
     30         },
     31         {
     32           'action_name': 'compiler',
     33           'inputs': [],
     34           'outputs': ['out3'],
     35           'action': [
     36               'python', 'test_exists.py', '$(VCInstallDir)bin\\cl.exe', 'out3'],
     37         },
     38       ],
     39     },
     40   ]
     41 }
     42