blob: 62f797449429155918e3939cc1a88d12b7e9f9ff [file] [log] [blame]
# Copyright 2021 The Cobalt Authors. All Rights Reserved.
#
# 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.
# The "common" target contains facilities provided by Starboard that are common
# to all platforms.
# This must be a static_library, not a source_set. When using a source_set, we
# see duplicate definition errors when compiling new.cc because of our
# overloaded operators.
source_set("common_headers_only") {
sources = [ "log.h" ]
deps = [ "//starboard:starboard_headers_only" ]
}
static_library("common") {
check_includes = false
public_deps = [
":common_headers_only",
"//starboard:starboard_headers_only",
]
sources = [
"//starboard/shared/media_session/playback_state.cc",
"//starboard/shared/media_session/playback_state.h",
"byte_swap.h",
"common.cc",
"condition_variable.cc",
"condition_variable.h",
"configuration_defaults.cc",
"configuration_defaults.h",
"experimental/concurrency_debug.cc",
"experimental/concurrency_debug.h",
"file.cc",
"file.h",
"flat_map.h",
"locked_ptr.h",
"log.cc",
"media.cc",
"media.h",
"move.h",
"murmurhash2.cc",
"murmurhash2.h",
"mutex.cc",
"mutex.h",
"new.cc",
"optional.cc",
"optional.h",
"queue.h",
"recursive_mutex.cc",
"recursive_mutex.h",
"ref_counted.cc",
"ref_counted.h",
"reset_and_return.h",
"rwlock.cc",
"rwlock.h",
"scoped_ptr.h",
"semaphore.cc",
"semaphore.h",
"socket.cc",
"socket.h",
"spin_lock.cc",
"spin_lock.h",
"state_machine.cc",
"state_machine.h",
"storage.cc",
"storage.h",
"string.h",
"thread.cc",
"thread.h",
"thread_collision_warner.cc",
"thread_collision_warner.h",
]
}
target(gtest_target_type, "common_test") {
testonly = true
sources = [
"media_test.cc",
"memory_test.cc",
"socket_test.cc",
"test_main.cc",
]
deps = [
":common",
"//testing/gmock",
"//testing/gtest",
]
}