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

Unified Diff: third_party/brotli/brotli.gyp

Issue 658573004: Updating to new OTS repo from https://github.com/khaledhosny/ots.git (Closed) Base URL: https://chromium.googlesource.com/external/ots@master
Patch Set: Adding Colored Emoji changes from external/git repo Created 6 years, 2 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
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': [
- '../..',
- ],
- },
},
],
}
« .gitmodules ('K') | « test/validator-checker.cc ('k') | third_party/lzma_sdk/Alloc.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698