[Boundary interfaces] Add a package file to hide boundary interfaces
Android publishes all public APIs that are not marked with the @hide
annotation.
Boundary interfaces are not supposed to be public to apps. In this CL we
add a file with the sole purpose of hiding the boundary interface
package from apps.
Bug: 788177
Change-Id: I58c9c7a8445c1a3fdfda3164735f5e2c755dfc44
Reviewed-on: https://chromium-review.googlesource.com/918861
Reviewed-by: Richard Coles <[email protected]>
Commit-Queue: Gustav Sennton <[email protected]>
Cr-Original-Commit-Position: refs/heads/master@{#536719}
Cr-Mirrored-From: https://chromium.googlesource.com/chromium/src
Cr-Mirrored-Commit: 0293525c239e35235b4ea8375d84956b4185efad
diff --git a/src/org/chromium/support_lib_boundary/package-info.java b/src/org/chromium/support_lib_boundary/package-info.java
new file mode 100644
index 0000000..053f844
--- /dev/null
+++ b/src/org/chromium/support_lib_boundary/package-info.java
@@ -0,0 +1,8 @@
+// Copyright 2018 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+/**
+ * @hide
+ */
+package org.chromium.support_lib_boundary;