summaryrefslogtreecommitdiff
path: root/codenavigation/BUILD
diff options
context:
space:
mode:
authorvaage <vaage@google.com>2021-08-16 13:11:13 -0700
committerAaron Vaage <vaage@google.com>2021-08-24 21:16:22 +0000
commit0569abe6f27e84171b241f9aa0d60b11ec526256 (patch)
treedcb6984392d053065d6148ad80e8790d6180c3e7 /codenavigation/BUILD
parentcb196622feec64a1ab2eafa42570acce9f00a2a0 (diff)
downloadidea-0569abe6f27e84171b241f9aa0d60b11ec526256.tar.gz
Move Code Navigation To Its Own Module
Since code navigation is shared between the inspectors and the profilers, this change moves it to its own module called "codenavigation". While "inspectors-common" was being used as a means of sharing code between the inspectors and profilers, having a code navigation module better communicates the scope of the code within it. Change-Id: I2a622d48e422b986c631085b1478715a8593fff6
Diffstat (limited to 'codenavigation/BUILD')
-rw-r--r--codenavigation/BUILD17
1 files changed, 17 insertions, 0 deletions
diff --git a/codenavigation/BUILD b/codenavigation/BUILD
new file mode 100644
index 00000000000..74bd2dbad80
--- /dev/null
+++ b/codenavigation/BUILD
@@ -0,0 +1,17 @@
+load("//tools/base/bazel:bazel.bzl", "iml_module")
+
+# managed by go/iml_to_build
+iml_module(
+ name = "codenavigation",
+ srcs = ["src"],
+ iml_files = ["codenavigation.iml"],
+ test_srcs = ["testSrc"],
+ visibility = ["//visibility:public"],
+ # do not sort: must match IML order
+ deps = [
+ "//prebuilts/studio/intellij-sdk:studio-sdk",
+ "//tools/adt/idea/.idea/libraries:truth[test]",
+ "//tools/adt/idea/native-symbolizer[module]",
+ "//tools/adt/idea/android:intellij.android.core[module]",
+ ],
+)