Files
nearby/connections/dart/BUILD
T
2023-03-14 11:35:49 -07:00

59 lines
1.7 KiB
Python

# Copyright 2020 Google LLC
#
# 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
#
# https://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.
load("//third_party/lexan/build_defs:lexan.bzl", "lexan")
package(default_visibility = ["//location/nearby:__subpackages__"])
licenses(["notice"])
# Build with --config=lexan
lexan.cc_windows_dll(
name = "nearby_connections_dart",
srcs = [
"core_adapter_dart.cc",
],
hdrs = [
"core_adapter_dart.h",
],
tags = ["windows-dll"],
deps = [
"//connections:core",
"//connections/c",
"//connections/implementation/flags:connections_flags",
"//internal/platform/implementation/windows",
"//third_party/dart_lang/v2:dart_api_dl",
"//third_party/webrtc/files/stable/webrtc/api:create_peerconnection_factory",
],
)
objc_library(
name = "nearby_connections_objc",
srcs = [
"core_adapter_dart.cc",
],
hdrs = [
"core_adapter_dart.h",
],
deps = [
"//connections:core",
"//connections:core_types",
"//connections/c",
"//internal/platform:types",
"//internal/platform/implementation/apple", # buildcleaner: keep
"//third_party/dart_lang/v2:dart_api_dl",
],
alwayslink = 1,
)