aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/analysis/BuildInfo.java
diff options
context:
space:
mode:
authorGravatar Daniel Wagner-Hall <danielwh@google.com>2015-04-06 22:39:03 +0000
committerGravatar Damien Martin-Guillerez <dmarting@google.com>2015-04-08 08:45:47 +0000
commitd99b27b12437fd7f12c80f1ecebb66e4abf3d754 (patch)
treeece803489693357692795fcbd243b6240d64f683 /src/main/java/com/google/devtools/build/lib/analysis/BuildInfo.java
parentb893421171f70c7948a73da335e59f65b200bf3c (diff)
objc: Pass --embed_label to iOS application Info.plist files
-- MOS_MIGRATED_REVID=90455131
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/analysis/BuildInfo.java')
-rw-r--r--src/main/java/com/google/devtools/build/lib/analysis/BuildInfo.java26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/analysis/BuildInfo.java b/src/main/java/com/google/devtools/build/lib/analysis/BuildInfo.java
new file mode 100644
index 0000000000..4177e56d93
--- /dev/null
+++ b/src/main/java/com/google/devtools/build/lib/analysis/BuildInfo.java
@@ -0,0 +1,26 @@
+// Copyright 2015 Google Inc. 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.analysis;
+
+/**
+ * A class to hold and query the build information and support methods to read
+ * it from disk.
+ */
+public class BuildInfo {
+ /**
+ * Named constants for the BuildInfo keys.
+ */
+ public static final String BUILD_EMBED_LABEL = "BUILD_EMBED_LABEL";
+}