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

Side by Side 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 unified diff | Download patch
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright 2013 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 # lzma_sdk for standalone build.
6 { 5 {
7 'targets': [ 6 'targets': [
8 { 7 {
9 'target_name': 'ots_lzma_sdk', 8 'target_name': 'brotli',
10 'type': 'static_library', 9 'type': 'static_library',
11 'defines': [ 10 'include_dirs': [
12 '_7ZIP_ST', # Disable multi-thread support. 11 'src/brotli/dec',
13 '_LZMA_PROB32', # This could increase the speed on 32bit platform.
14 ], 12 ],
15 'sources': [ 13 'sources': [
16 'Alloc.c', 14 'src/brotli/dec/bit_reader.c',
17 'Alloc.h', 15 'src/brotli/dec/bit_reader.h',
18 'LzFind.c', 16 'src/brotli/dec/context.h',
19 'LzFind.h', 17 'src/brotli/dec/decode.c',
20 'LzHash.h', 18 'src/brotli/dec/decode.h',
21 'LzmaEnc.c', 19 'src/brotli/dec/dictionary.h',
22 'LzmaEnc.h', 20 'src/brotli/dec/huffman.c',
23 'LzmaDec.c', 21 'src/brotli/dec/huffman.h',
24 'LzmaDec.h', 22 'src/brotli/dec/prefix.h',
25 'LzmaLib.c', 23 'src/brotli/dec/safe_malloc.c',
26 'LzmaLib.h', 24 'src/brotli/dec/safe_malloc.h',
27 'Types.h', 25 'src/brotli/dec/streams.c',
26 'src/brotli/dec/streams.h',
27 'src/brotli/dec/transform.h',
28 'src/brotli/dec/types.h',
28 ], 29 ],
29 'include_dirs': [
30 '.',
31 ],
32 'direct_dependent_settings': {
33 'include_dirs': [
34 '../..',
35 ],
36 },
37 }, 30 },
38 ], 31 ],
39 } 32 }
OLDNEW
« .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