• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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      'rules': [
9        {
10          'rule_name': 'assembler (gnu-compatible)',
11          'msvs_cygwin_shell': 0,
12          'msvs_quote_cmd': 0,
13          'extension': 'S',
14          'inputs': [
15            'as.bat',
16          ],
17          'outputs': [
18            '$(IntDir)/$(InputName).obj',
19          ],
20          'action': [
21            'as.bat',
22            '$(InputPath)',
23            '$(IntDir)/$(InputName).obj',
24          ],
25          'message': 'Building assembly language file $(InputPath)',
26          'process_outputs_as_sources': 1,
27        },
28      ],
29      'target_name': 'test',
30      'type': 'static_library',
31      'sources': [ 'an_asm.S' ],
32    },
33  ],
34}
35