summaryrefslogtreecommitdiff
path: root/BUILD.gn
diff options
context:
space:
mode:
Diffstat (limited to 'BUILD.gn')
-rw-r--r--BUILD.gn19
1 files changed, 19 insertions, 0 deletions
diff --git a/BUILD.gn b/BUILD.gn
new file mode 100644
index 0000000..66f2fee
--- /dev/null
+++ b/BUILD.gn
@@ -0,0 +1,19 @@
+# Copyright 2017 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.
+
+import("//build/config/android/config.gni")
+import("//build/config/android/rules.gni")
+
+android_library("boundary_interface_java") {
+ java_files = [
+ "src/org/chromium/support_lib_boundary/VisualStateCallbackInterface.java",
+ "src/org/chromium/support_lib_boundary/WebSettingsInterface.java",
+ "src/org/chromium/support_lib_boundary/WebViewProvider.java",
+ "src/org/chromium/support_lib_boundary/WebViewProviderFactory.java",
+ ]
+
+ # We can't use ANY deps here, the support library should be able to build
+ # these interfaces without any other chromium dependencies.
+ deps = []
+}