Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(29)

Unified Diff: third_party/lzma_sdk/lzma_sdk.gyp

Issue 115004: Convert lzma_sdk to gyp. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « build/all.gyp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/lzma_sdk/lzma_sdk.gyp
===================================================================
--- third_party/lzma_sdk/lzma_sdk.gyp (revision 0)
+++ third_party/lzma_sdk/lzma_sdk.gyp (revision 0)
@@ -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)',
bradn 2009/05/05 23:37:29 when did we get a library variable?
sgk 2009/05/06 03:49:37 Couple weeks now; search the chromium-dev list for
+ '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': [
+ '.',
+ ],
+ },
+ },
+ ],
+}
« no previous file with comments | « build/all.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698