blob: cbae0faca993066c705dd0f490ac22b1ff72c81b [file] [log] [blame]
// Copyright 2015 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.
package com.google.devtools.build.lib.packages.util;
import com.google.common.base.Predicate;
import com.google.common.collect.ImmutableList;
import com.google.devtools.build.lib.cmdline.Label;
import java.io.IOException;
/**
* Bazel implementation of {@link MockCcSupport}
*/
public final class BazelMockCcSupport extends MockCcSupport {
public static final BazelMockCcSupport INSTANCE = new BazelMockCcSupport();
/** Filter to remove implicit dependencies of C/C++ rules. */
private static final boolean isNotCcLabel(String label) {
return !label.startsWith("//tools/cpp");
}
private BazelMockCcSupport() {}
private static final ImmutableList<String> CROSSTOOL_ARCHS =
ImmutableList.of("piii", "k8", "armeabi-v7a", "ppc");
@Override
protected String getRealFilesystemCrosstoolTopPath() {
throw new UnsupportedOperationException("TODO");
}
@Override
protected String[] getRealFilesystemTools(String crosstoolTop) {
throw new UnsupportedOperationException("TODO");
}
@Override
protected ImmutableList<String> getCrosstoolArchs() {
return CROSSTOOL_ARCHS;
}
@Override
public void setup(MockToolsConfig config) throws IOException {
writeMacroFile(config);
setupRulesCc(config);
setupCcToolchainConfig(config);
createParseHeadersAndLayeringCheckWhitelist(config);
}
@Override
public Label getMockCrosstoolLabel() {
return Label.parseAbsoluteUnchecked("@bazel_tools//tools/cpp:toolchain");
}
@Override
public String getMockCrosstoolPath() {
return "bazel_tools_workspace/tools/cpp/";
}
@Override
public Predicate<String> labelNameFilter() {
return BazelMockCcSupport::isNotCcLabel;
}
}