summaryrefslogtreecommitdiffstats
path: root/third_party/lzma_sdk/lzma_sdk.gyp
blob: 518a25769e3f7dd44502b716fd8b9c843fa74cad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
# Copyright (c) 2009 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

{
  'variables': {
    'lzma_sdk_sources': [
      '7zCrc.c',
      '7zCrc.h',
      'Archive/7z/7zAlloc.c',
      'Archive/7z/7zAlloc.h',
      'Archive/7z/7zBuffer.c',
      'Archive/7z/7zBuffer.h',
      'Archive/7z/7zDecode.c',
      'Archive/7z/7zDecode.h',
      'Archive/7z/7zExtract.c',
      'Archive/7z/7zExtract.h',
      'Archive/7z/7zHeader.c',
      'Archive/7z/7zHeader.h',
      'Archive/7z/7zIn.c',
      'Archive/7z/7zIn.h',
      'Archive/7z/7zItem.c',
      'Archive/7z/7zItem.h',
      'Archive/7z/7zMethodID.c',
      'Archive/7z/7zMethodID.h',
      'Compress/Branch/BranchTypes.h',
      'Compress/Branch/BranchX86.c',
      'Compress/Branch/BranchX86.h',
      'Compress/Branch/BranchX86_2.c',
      'Compress/Branch/BranchX86_2.h',
      'Compress/Lzma/LzmaDecode.c',
      'Compress/Lzma/LzmaDecode.h',
      'Compress/Lzma/LzmaTypes.h',
      'Types.h',
    ],
  },
  'targets': [
    {
      'target_name': 'lzma_sdk',
      'type': '<(library)',
      'defines': [
        '_LZMA_PROB32',
        '_LZMA_IN_CB',
      ],
      'include_dirs': [
        '.',
      ],
      # TODO:  original configuration had /wd4800, add if
      # necessary and delete if not.
      #        '/wd4800',
      'msvs_guid': 'B84553C8-5676-427B-B3E4-23DDDC4DBC7B',
      'sources': ['<@(lzma_sdk_sources)'],
      'direct_dependent_settings': {
        'defines': [
          '_LZMA_IN_CB',
        ],
        'include_dirs': [
          '.',
        ],
      },
    },
  ],
  'conditions': [
    ['OS=="win"', {
      'targets': [
        {
          'target_name': 'lzma_sdk64',
          'type': '<(library)',
          'defines': [
            '_LZMA_PROB32',
            '_LZMA_IN_CB',
          ],
          'include_dirs': [
            '.',
          ],
          'sources': ['<@(lzma_sdk_sources)'],
          'configurations': {
            'Common_Base': {
              'msvs_target_platform': 'x64',
            },
          },
          'direct_dependent_settings': {
            'defines': [
              '_LZMA_IN_CB',
            ],
            'include_dirs': [
              '.',
            ],
          },
        },
      ],
    }],
  ],
}

# Local Variables:
# tab-width:2
# indent-tabs-mode:nil
# End:
# vim: set expandtab tabstop=2 shiftwidth=2: