mirror of https://github.com/grpc/grpc.git
The C based gRPC (C++, Python, Ruby, Objective-C, PHP, C#)
https://grpc.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
187 lines
5.0 KiB
187 lines
5.0 KiB
# Copyright 2018 The Bazel 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. |
|
|
|
# This becomes the BUILD file for @local_config_cc// under Windows. |
|
|
|
package(default_visibility = ["//visibility:public"]) |
|
|
|
load(":cc_toolchain_config.bzl", "cc_toolchain_config") |
|
|
|
cc_library( |
|
name = "malloc", |
|
) |
|
|
|
filegroup( |
|
name = "empty", |
|
srcs = [], |
|
) |
|
|
|
# Hardcoded toolchain, legacy behaviour. |
|
cc_toolchain_suite( |
|
name = "toolchain", |
|
toolchains = { |
|
"armeabi-v7a|compiler": ":cc-compiler-armeabi-v7a", |
|
"x64_windows|msvc-cl": ":cc-compiler-x64_windows", |
|
"x64_windows|msys-gcc": ":cc-compiler-x64_windows_msys", |
|
"x64_windows|mingw-gcc": ":cc-compiler-x64_windows_mingw", |
|
"x64_windows_msys": ":cc-compiler-x64_windows_msys", |
|
"x64_windows": ":cc-compiler-x64_windows", |
|
"armeabi-v7a": ":cc-compiler-armeabi-v7a", |
|
}, |
|
) |
|
|
|
cc_toolchain( |
|
name = "cc-compiler-x64_windows_msys", |
|
all_files = ":empty", |
|
ar_files = ":empty", |
|
as_files = ":empty", |
|
compiler_files = ":empty", |
|
dwp_files = ":empty", |
|
linker_files = ":empty", |
|
objcopy_files = ":empty", |
|
strip_files = ":empty", |
|
supports_param_files = 1, |
|
toolchain_config = ":msys_x64", |
|
toolchain_identifier = "msys_x64", |
|
) |
|
|
|
cc_toolchain_config( |
|
name = "msys_x64", |
|
compiler = "msys-gcc", |
|
cpu = "x64_windows", |
|
) |
|
|
|
toolchain( |
|
name = "cc-toolchain-x64_windows_msys", |
|
exec_compatible_with = [ |
|
"@bazel_tools//platforms:x86_64", |
|
"@bazel_tools//platforms:windows", |
|
"@bazel_tools//tools/cpp:msys", |
|
], |
|
target_compatible_with = [ |
|
"@bazel_tools//platforms:x86_64", |
|
"@bazel_tools//platforms:windows", |
|
], |
|
toolchain = ":cc-compiler-x64_windows_msys", |
|
toolchain_type = "@bazel_tools//tools/cpp:toolchain_type", |
|
) |
|
|
|
cc_toolchain( |
|
name = "cc-compiler-x64_windows_mingw", |
|
all_files = ":empty", |
|
ar_files = ":empty", |
|
as_files = ":empty", |
|
compiler_files = ":empty", |
|
dwp_files = ":empty", |
|
linker_files = ":empty", |
|
objcopy_files = ":empty", |
|
strip_files = ":empty", |
|
supports_param_files = 0, |
|
toolchain_config = ":msys_x64_mingw", |
|
toolchain_identifier = "msys_x64_mingw", |
|
) |
|
|
|
cc_toolchain_config( |
|
name = "msys_x64_mingw", |
|
compiler = "mingw-gcc", |
|
cpu = "x64_windows", |
|
) |
|
|
|
toolchain( |
|
name = "cc-toolchain-x64_windows_mingw", |
|
exec_compatible_with = [ |
|
"@bazel_tools//platforms:x86_64", |
|
"@bazel_tools//platforms:windows", |
|
"@bazel_tools//tools/cpp:mingw", |
|
], |
|
target_compatible_with = [ |
|
"@bazel_tools//platforms:x86_64", |
|
"@bazel_tools//platforms:windows", |
|
], |
|
toolchain = ":cc-compiler-x64_windows_mingw", |
|
toolchain_type = "@bazel_tools//tools/cpp:toolchain_type", |
|
) |
|
|
|
cc_toolchain( |
|
name = "cc-compiler-x64_windows", |
|
all_files = ":empty", |
|
ar_files = ":empty", |
|
as_files = ":empty", |
|
compiler_files = ":empty", |
|
dwp_files = ":empty", |
|
linker_files = ":empty", |
|
objcopy_files = ":empty", |
|
strip_files = ":empty", |
|
supports_param_files = 1, |
|
toolchain_config = ":msvc_x64", |
|
toolchain_identifier = "msvc_x64", |
|
) |
|
|
|
cc_toolchain_config( |
|
name = "msvc_x64", |
|
compiler = "msvc-cl", |
|
cpu = "x64_windows", |
|
) |
|
|
|
toolchain( |
|
name = "cc-toolchain-x64_windows", |
|
exec_compatible_with = [ |
|
"@bazel_tools//platforms:x86_64", |
|
"@bazel_tools//platforms:windows", |
|
], |
|
target_compatible_with = [ |
|
"@bazel_tools//platforms:x86_64", |
|
"@bazel_tools//platforms:windows", |
|
], |
|
toolchain = ":cc-compiler-x64_windows", |
|
toolchain_type = "@bazel_tools//tools/cpp:toolchain_type", |
|
) |
|
|
|
cc_toolchain( |
|
name = "cc-compiler-armeabi-v7a", |
|
all_files = ":empty", |
|
ar_files = ":empty", |
|
as_files = ":empty", |
|
compiler_files = ":empty", |
|
dwp_files = ":empty", |
|
linker_files = ":empty", |
|
objcopy_files = ":empty", |
|
strip_files = ":empty", |
|
supports_param_files = 1, |
|
toolchain_config = ":stub_armeabi-v7a", |
|
toolchain_identifier = "stub_armeabi-v7a", |
|
) |
|
|
|
cc_toolchain_config( |
|
name = "stub_armeabi-v7a", |
|
compiler = "compiler", |
|
cpu = "armeabi-v7a", |
|
) |
|
|
|
toolchain( |
|
name = "cc-toolchain-armeabi-v7a", |
|
exec_compatible_with = [ |
|
], |
|
target_compatible_with = [ |
|
"@bazel_tools//platforms:arm", |
|
"@bazel_tools//platforms:android", |
|
], |
|
toolchain = ":cc-compiler-armeabi-v7a", |
|
toolchain_type = "@bazel_tools//tools/cpp:toolchain_type", |
|
) |
|
|
|
filegroup( |
|
name = "link_dynamic_library", |
|
srcs = ["link_dynamic_library.sh"], |
|
)
|
|
|