mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-12 21:30:45 +01:00

This moves them from an API directory (system_wrappers/include/) to a non-API directory, which is exactly what we want for utilities like this. BUG=webrtc:8445 Change-Id: I6dc34fe662f5d87b3b5288d33055345bc6bf91db Reviewed-on: https://webrtc-review.googlesource.com/21164 Commit-Queue: Karl Wiberg <kwiberg@webrtc.org> Reviewed-by: Danil Chapovalov <danilchap@webrtc.org> Cr-Commit-Position: refs/heads/master@{#22567}
47 lines
1 KiB
Text
47 lines
1 KiB
Text
# Copyright (c) 2018 The WebRTC project authors. All Rights Reserved.
|
|
#
|
|
# Use of this source code is governed by a BSD-style license
|
|
# that can be found in the LICENSE file in the root of the source
|
|
# tree. An additional intellectual property rights grant can be found
|
|
# in the file PATENTS. All contributing project authors may
|
|
# be found in the AUTHORS file in the root of the source tree.
|
|
|
|
import("../../webrtc.gni")
|
|
if (is_android) {
|
|
import("//build/config/android/config.gni")
|
|
import("//build/config/android/rules.gni")
|
|
}
|
|
|
|
rtc_source_set("aligned_array") {
|
|
sources = [
|
|
"aligned_array.h",
|
|
]
|
|
deps = [
|
|
":aligned_malloc",
|
|
"..:checks",
|
|
]
|
|
}
|
|
|
|
rtc_source_set("aligned_malloc") {
|
|
sources = [
|
|
"aligned_malloc.cc",
|
|
"aligned_malloc.h",
|
|
]
|
|
deps = [
|
|
"../..:typedefs",
|
|
]
|
|
}
|
|
|
|
rtc_source_set("unittests") {
|
|
testonly = true
|
|
sources = [
|
|
"aligned_array_unittest.cc",
|
|
"aligned_malloc_unittest.cc",
|
|
]
|
|
deps = [
|
|
":aligned_array",
|
|
":aligned_malloc",
|
|
"../..:typedefs",
|
|
"../../test:test_support",
|
|
]
|
|
}
|