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

Commit bee0ec26 authored by Henri Chataing's avatar Henri Chataing Committed by Gerrit Code Review
Browse files

Revert "Remove empty source files"

This reverts commit 4b0082f6.

Reason for revert: b/335243002

Change-Id: I15e6a66f9eb705ef141c085f67aae42153267da3
parent 4b0082f6
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -189,6 +189,7 @@ cc_library_static {
        "gatt/database_builder.cc",
        "jv/bta_jv_act.cc",
        "jv/bta_jv_api.cc",
        "jv/bta_jv_cfg.cc",
        "rfcomm/bta_rfcomm_scn.cc",
        "sdp/bta_sdp.cc",
        "sdp/bta_sdp_act.cc",
+1 −0
Original line number Diff line number Diff line
@@ -88,6 +88,7 @@ static_library("bta") {
    "hd/bta_hd_main.cc",
    "jv/bta_jv_act.cc",
    "jv/bta_jv_api.cc",
    "jv/bta_jv_cfg.cc",
    "le_audio/audio_hal_client/audio_sink_hal_client.cc",
    "le_audio/audio_hal_client/audio_source_hal_client.cc",
    "le_audio/broadcaster/broadcast_configuration_provider.cc",
+31 −0
Original line number Diff line number Diff line
/******************************************************************************
 *
 *  Copyright 2014 The Android Open Source Project
 *  Copyright 2004-2012 Broadcom Corporation
 *
 *  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.
 *
 ******************************************************************************/

/******************************************************************************
 *
 *  This file contains compile-time configurable constants for advanced
 *  audio
 *
 ******************************************************************************/

#include <cstdint>

#include "bta/include/bta_jv_api.h"
#include "internal_include/bt_target.h"
#include "stack/include/sdp_api.h"
+1 −0
Original line number Diff line number Diff line
@@ -66,6 +66,7 @@ filegroup {
        "internal/enhanced_retransmission_mode_channel_data_controller_test.cc",
        "internal/fixed_channel_allocator_test.cc",
        "internal/le_credit_based_channel_data_controller_test.cc",
        "internal/receiver_test.cc",
        "internal/scheduler_fifo_test.cc",
        "internal/sender_test.cc",
        "le/internal/dynamic_channel_service_manager_test.cc",
+36 −0
Original line number Diff line number Diff line
/*
 * Copyright 2019 The Android Open Source Project
 *
 * 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.
 */

#include "l2cap/internal/receiver.h"

#include <gmock/gmock.h>
#include <gtest/gtest.h>
#include <future>

#include "l2cap/internal/channel_impl_mock.h"
#include "l2cap/l2cap_packets.h"
#include "os/handler.h"
#include "os/queue.h"
#include "os/thread.h"
#include "packet/raw_builder.h"

namespace bluetooth {
namespace l2cap {
namespace internal {
namespace {}  // namespace
}  // namespace internal
}  // namespace l2cap
}  // namespace bluetooth
Loading