summaryrefslogtreecommitdiff
path: root/deps/gyp/test/rules/src/noaction/no_action_with_rules_fails.gyp
blob: 9b6a65629f3b86742f8be97cde67e6975eb0dedb (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
28
29
30
31
32
33
34
35
36
37
# 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.

# Test the case where there's no action but there are input rules that should
# be processed results in a gyp failure.
{
  'targets': [
    {
      'target_name': 'extension_does_match_sources_but_no_action',
      'type': 'none',
      'msvs_cygwin_shell': 0,
      'sources': [
        'file1.in',
      ],
      'rules': [
        {
          'rule_name': 'assembled',
          'extension': 'in',
          'outputs': [
            '<(RULE_INPUT_ROOT).in',
          ],
          'conditions': [
            # Always fails.
            [ '"true"=="false"', {
              'action': [
                'python', '../copy-file.py', '<(RULE_INPUT_PATH)', '<@(_outputs)',
              ],
              'process_outputs_as_sources': 1,
              'message': 'test_rule',
            }],
          ],
        },
      ],
    },
  ],
}