• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#
2# Copyright (C) 2016 The Android Open Source Project
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8#      http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
16
17FLAC_SOURCES = \
18  flac_jni.cc                                    \
19  flac_parser.cc                                 \
20  flac/src/libFLAC/bitmath.c                     \
21  flac/src/libFLAC/bitreader.c                   \
22  flac/src/libFLAC/bitwriter.c                   \
23  flac/src/libFLAC/cpu.c                         \
24  flac/src/libFLAC/crc.c                         \
25  flac/src/libFLAC/fixed.c                       \
26  flac/src/libFLAC/fixed_intrin_sse2.c           \
27  flac/src/libFLAC/fixed_intrin_ssse3.c          \
28  flac/src/libFLAC/float.c                       \
29  flac/src/libFLAC/format.c                      \
30  flac/src/libFLAC/lpc.c                         \
31  flac/src/libFLAC/lpc_intrin_avx2.c             \
32  flac/src/libFLAC/lpc_intrin_sse2.c             \
33  flac/src/libFLAC/lpc_intrin_sse41.c            \
34  flac/src/libFLAC/lpc_intrin_sse.c              \
35  flac/src/libFLAC/md5.c                         \
36  flac/src/libFLAC/memory.c                      \
37  flac/src/libFLAC/metadata_iterators.c          \
38  flac/src/libFLAC/metadata_object.c             \
39  flac/src/libFLAC/stream_decoder.c              \
40  flac/src/libFLAC/stream_encoder.c              \
41  flac/src/libFLAC/stream_encoder_framing.c      \
42  flac/src/libFLAC/stream_encoder_intrin_avx2.c  \
43  flac/src/libFLAC/stream_encoder_intrin_sse2.c  \
44  flac/src/libFLAC/stream_encoder_intrin_ssse3.c \
45  flac/src/libFLAC/window.c
46