Index: third_party/brotli/brotli.gyp |
diff --git a/third_party/lzma_sdk/lzma_sdk.gyp b/third_party/brotli/brotli.gyp |
old mode 100644 |
new mode 100755 |
similarity index 25% |
rename from third_party/lzma_sdk/lzma_sdk.gyp |
rename to third_party/brotli/brotli.gyp |
index 19ec13e671b924861a52f0d38b87829a4846ae88..8e54f0345adb2ae2527ad62222ec3f99c707ba05 |
--- a/third_party/lzma_sdk/lzma_sdk.gyp |
+++ b/third_party/brotli/brotli.gyp |
@@ -1,39 +1,32 @@ |
-# Copyright (c) 2012 The Chromium Authors. All rights reserved. |
+# Copyright 2013 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. |
-# lzma_sdk for standalone build. |
{ |
'targets': [ |
{ |
- 'target_name': 'ots_lzma_sdk', |
+ 'target_name': 'brotli', |
'type': 'static_library', |
- 'defines': [ |
- '_7ZIP_ST', # Disable multi-thread support. |
- '_LZMA_PROB32', # This could increase the speed on 32bit platform. |
+ 'include_dirs': [ |
+ 'src/brotli/dec', |
], |
'sources': [ |
- 'Alloc.c', |
- 'Alloc.h', |
- 'LzFind.c', |
- 'LzFind.h', |
- 'LzHash.h', |
- 'LzmaEnc.c', |
- 'LzmaEnc.h', |
- 'LzmaDec.c', |
- 'LzmaDec.h', |
- 'LzmaLib.c', |
- 'LzmaLib.h', |
- 'Types.h', |
- ], |
- 'include_dirs': [ |
- '.', |
+ 'src/brotli/dec/bit_reader.c', |
+ 'src/brotli/dec/bit_reader.h', |
+ 'src/brotli/dec/context.h', |
+ 'src/brotli/dec/decode.c', |
+ 'src/brotli/dec/decode.h', |
+ 'src/brotli/dec/dictionary.h', |
+ 'src/brotli/dec/huffman.c', |
+ 'src/brotli/dec/huffman.h', |
+ 'src/brotli/dec/prefix.h', |
+ 'src/brotli/dec/safe_malloc.c', |
+ 'src/brotli/dec/safe_malloc.h', |
+ 'src/brotli/dec/streams.c', |
+ 'src/brotli/dec/streams.h', |
+ 'src/brotli/dec/transform.h', |
+ 'src/brotli/dec/types.h', |
], |
- 'direct_dependent_settings': { |
- 'include_dirs': [ |
- '../..', |
- ], |
- }, |
}, |
], |
} |