summaryrefslogtreecommitdiff
path: root/deps/gyp/test/mac/global-settings/src/dir2/dir2.gyp
blob: cda46c839badec158504023ea7e70cf37a7cee04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# 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': 'dir2_target',
      'type': 'none',
      'dependencies': [
        '../dir1/dir1.gyp:dir1_target',
      ],
      'actions': [
        {
          'inputs': [ ],
          'outputs': [ '<(PRODUCT_DIR)/file.txt' ],
          'action_name': 'Test action',
          'action': ['cp', 'file.txt', '${BUILT_PRODUCTS_DIR}/file.txt' ],
        },
      ],
    },
  ],
}