blob: 38c472976dc5c87d327a826acf5f2f00c2ca5ee3 [file] [log] [blame]
# 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.
{
'targets': [
{
'target_name': 'brotli',
'type': 'static_library',
'include_dirs': [
'dec',
],
'sources': [
'dec/bit_reader.c',
'dec/bit_reader.h',
'dec/context.h',
'dec/decode.c',
'dec/decode.h',
'dec/dictionary.h',
'dec/huffman.c',
'dec/huffman.h',
'dec/prefix.h',
'dec/safe_malloc.c',
'dec/safe_malloc.h',
'dec/state.c',
'dec/state.h',
'dec/streams.c',
'dec/streams.h',
'dec/transform.h',
'dec/types.h',
],
'variables': {
'clang_warning_flags': [
# IncrementalCopyFastPath in decode.c can be unused.
# (The file looks very different upstream, this is probably no longer
# needed after rolling brotli the next time.)
'-Wno-unused-function',
],
},
'conditions': [
['os_posix==1 and (target_arch=="arm" or target_arch=="armv7" or target_arch=="arm64")', {
'cflags!': ['-Os'],
'cflags': ['-O2'],
}],
],
},
],
}