• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright (c) 2014 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  'targets': [
6    {
7      'target_name': 'target',
8      'product_name': 'Product',
9      'type': 'shared_library',
10      'mac_bundle': 1,
11      'sources': [
12        '<(PRODUCT_DIR)/copy.c',
13      ],
14      'actions': [
15        {
16          'action_name': 'Helper',
17          'description': 'Helps',
18          'inputs': [ 'source.c' ],
19          'outputs': [ '<(PRODUCT_DIR)/copy.c' ],
20          'action': [ 'cp', '${SOURCE_ROOT}/source.c',
21                      '<(PRODUCT_DIR)/copy.c' ],
22        },
23      ],
24    },
25  ],
26}
27