1# Copyright (c) 2013 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      'target_name': 'copies_samedir',
9      'type': 'none',
10      'dependencies': [
11        'copies_samedir_dependency',
12      ],
13      'copies': [
14        {
15          'destination': '<(PRODUCT_DIR)/copies-out-samedir',
16          'files': [
17            'file1',
18          ],
19        },
20      ],
21    },
22    {
23      'target_name': 'copies_samedir_dependency',
24      'type': 'none',
25      'direct_dependent_settings': {
26        'copies': [
27          {
28            'destination': '<(PRODUCT_DIR)/copies-out-samedir',
29            'files': [
30              'file2',
31            ],
32          },
33        ],
34      },
35    },
36  ],
37}
38