aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/test
diff options
context:
space:
mode:
authorGravatar laurentlb <laurentlb@google.com>2017-04-06 13:58:23 +0000
committerGravatar Marcel Hlopko <hlopko@google.com>2017-04-06 17:51:28 +0200
commita15a152ce249185cf68a13867fd5a2b6b0d748a4 (patch)
tree69ebac90ab69af4fdbefdc3a5e36e28f70653ece /src/test
parent6ebe56a479a29c6e23b5a6d748a5a4d3b68cbb68 (diff)
Delete SubincludePreprocessorModule
RELNOTES: None. PiperOrigin-RevId: 152376871
Diffstat (limited to 'src/test')
-rw-r--r--src/test/java/com/google/devtools/build/lib/buildtool/SubincludePreprocessorModule.java26
1 files changed, 0 insertions, 26 deletions
diff --git a/src/test/java/com/google/devtools/build/lib/buildtool/SubincludePreprocessorModule.java b/src/test/java/com/google/devtools/build/lib/buildtool/SubincludePreprocessorModule.java
deleted file mode 100644
index 9b6d807b29..0000000000
--- a/src/test/java/com/google/devtools/build/lib/buildtool/SubincludePreprocessorModule.java
+++ /dev/null
@@ -1,26 +0,0 @@
-// 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.buildtool;
-
-import com.google.devtools.build.lib.analysis.BlazeDirectories;
-import com.google.devtools.build.lib.packages.util.SubincludePreprocessor;
-import com.google.devtools.build.lib.runtime.BlazeModule;
-import com.google.devtools.build.lib.runtime.WorkspaceBuilder;
-
-public class SubincludePreprocessorModule extends BlazeModule {
- @Override
- public void workspaceInit(BlazeDirectories directories, WorkspaceBuilder builder) {
- builder.setPreprocessorFactorySupplier(new SubincludePreprocessor.FactorySupplier());
- }
-}