summaryrefslogtreecommitdiff
path: root/deps/gyp/test/same-source-file-name/src/double-static.gyp
blob: e49c0e1251020ce8c1a5e75cb468c1133af92ecf (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': 'lib',
      'product_name': 'test_static_lib',
      'type': 'static_library',
      'sources': [
        'prog1.c',
        'func.c',
        'subdir1/func.c',
        'subdir2/func.c',
      ],
      'defines': [
        'PROG="prog1"',
      ],
    },
  ],
}