summaryrefslogtreecommitdiff
path: root/deps/gyp/test/win/command-quote/subdir/and/another/in-subdir.gyp
blob: 3dff4c40b9781ad6fc885ef4e4d45c3344316cee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

{
 'targets': [
    {
      'target_name': 'test_batch_depth',
      'type': 'none',
      'variables': {
        # Taken from native_client/build/common.gypi. Seems unintentional (a
        # string in a 1 element list)? But since it works on other generators,
        # I guess it should work here too.
        'filepath': [ 'call <(DEPTH)/../../../go.bat' ],
      },
      'rules': [
      {
        'rule_name': 'build_with_batch4',
        'msvs_cygwin_shell': 0,
        'extension': 'S',
        'outputs': ['output4.obj'],
        'action': ['<@(filepath)', '<(RULE_INPUT_PATH)', 'output4.obj'],
      },],
      'sources': ['<(DEPTH)\\..\\..\\..\\a.S'],
    },
  ]
}