diff options
author | sgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-15 20:40:08 +0000 |
---|---|---|
committer | sgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-15 20:40:08 +0000 |
commit | 1e9e66fa4cefbc2b95dcabaf0c7e01ac2aa40642 (patch) | |
tree | f20969cec6d0405491c62e66a6085693c672582a /third_party/lzma_sdk | |
parent | 7d3feb91489d40903324d07d7cbe275adb9af0df (diff) | |
download | chromium_src-1e9e66fa4cefbc2b95dcabaf0c7e01ac2aa40642.zip chromium_src-1e9e66fa4cefbc2b95dcabaf0c7e01ac2aa40642.tar.gz chromium_src-1e9e66fa4cefbc2b95dcabaf0c7e01ac2aa40642.tar.bz2 |
Convert lzma_sdk to gyp.
Review URL: http://codereview.chromium.org/115004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@16179 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'third_party/lzma_sdk')
-rw-r--r-- | third_party/lzma_sdk/lzma_sdk.gyp | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/third_party/lzma_sdk/lzma_sdk.gyp b/third_party/lzma_sdk/lzma_sdk.gyp new file mode 100644 index 0000000..0fef094 --- /dev/null +++ b/third_party/lzma_sdk/lzma_sdk.gyp @@ -0,0 +1,60 @@ +# 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. + +{ + 'includes': [ + '../../build/common.gypi', + ], + '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': [ + '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', + ], + 'direct_dependent_settings': { + 'include_dirs': [ + '.', + ], + }, + }, + ], +} |