Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit bb12a0da authored by Arman Uguray's avatar Arman Uguray
Browse files

gn-build: Get //embrdv/sbc to compile

This CL builds the SBC codec that lives in embdrv/sbc to compile as a static
library. Unlike the Android build that creates two separate libraries for the
encoder and the decoder, the GN build creates a single static library.

BUG=21339022

Change-Id: I9f12e63339c850d26f49a3756526a185ca7fec8d
parent d4211cfc
Loading
Loading
Loading
Loading
+64 −0
Original line number Diff line number Diff line
#
#  Copyright (C) 2015 Google, Inc.
#
#  Licensed under the Apache License, Version 2.0 (the "License");
#  you may not use this file except in compliance with the License.
#  You may obtain a copy of the License at:
#
#  http://www.apache.org/licenses/LICENSE-2.0
#
#  Unless required by applicable law or agreed to in writing, software
#  distributed under the License is distributed on an "AS IS" BASIS,
#  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
#  See the License for the specific language governing permissions and
#  limitations under the License.
#

source_set("sbc_decoder") {
  sources = [
    "decoder/srce/alloc.c",
    "decoder/srce/bitalloc.c",
    "decoder/srce/bitalloc-sbc.c",
    "decoder/srce/bitstream-decode.c",
    "decoder/srce/decoder-oina.c",
    "decoder/srce/decoder-private.c",
    "decoder/srce/decoder-sbc.c",
    "decoder/srce/dequant.c",
    "decoder/srce/framing.c",
    "decoder/srce/framing-sbc.c",
    "decoder/srce/oi_codec_version.c",
    "decoder/srce/synthesis-8-generated.c",
    "decoder/srce/synthesis-dct8.c",
    "decoder/srce/synthesis-sbc.c",
  ]

  include_dirs = [
    "decoder/include",
  ]
}

source_set("sbc_encoder") {
  sources = [
    "encoder/srce/sbc_analysis.c",
    "encoder/srce/sbc_dct.c",
    "encoder/srce/sbc_dct_coeffs.c",
    "encoder/srce/sbc_enc_bit_alloc_mono.c",
    "encoder/srce/sbc_enc_bit_alloc_ste.c",
    "encoder/srce/sbc_enc_coeffs.c",
    "encoder/srce/sbc_encoder.c",
    "encoder/srce/sbc_packing.c",
  ]

  include_dirs = [
    "encoder/include",
    "//include",
    "//stack/include",
  ]
}

static_library("sbc") {
  deps = [
    ":sbc_decoder",
    ":sbc_encoder",
  ]
}