• 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  'target_defaults': {
6    'configurations': {
7       'Debug': {},
8       'Release': {},
9    },
10  },
11  'targets': [
12    {
13      'target_name': 'random_target',
14      'type': 'executable',
15      'sources': [ 'main.c', ],
16      'postbuilds': [
17        {
18          'postbuild_name': 'Touch a file.',
19          'action': [
20            './postbuild-touch-file.sh',
21          ],
22        },
23      ],
24    },
25  ],
26}
27