summaryrefslogtreecommitdiff
path: root/BUILD
blob: 1307f673f4257e437e4d36169e69d9bbe9a7645a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
load("//tools/base/bazel:bazel.bzl", "iml_module")

iml_module(
    name = "google-samples",
    srcs = ["src"],
    iml_files = ["google-samples.iml"],
    tags = ["managed"],
    visibility = ["//visibility:public"],
    # do not sort: must match IML order
    runtime_deps = [
        "//tools/idea:credential-store",
        "//tools/idea:tasks-platform-impl",
        "//tools/idea:json",
        "//tools/idea:relaxng",
        "//tools/idea/java/compiler/instrumentation-util-8",
        "//tools/idea/plugins/maven:maven2-server-impl",
    ],
    # do not sort: must match IML order
    deps = [
        "//tools/idea/.idea/libraries:Guava",
        "//tools/adt/idea/android[module]",
        "//tools/idea/platform/extensions[module]",
        "//tools/idea/platform/annotations[module]",
        "//tools/idea/.idea/libraries:JUnit4[test]",
        "//tools/idea/platform/platform-api[module]",
        "//tools/studio/google/cloud/tools/google-login-plugin:google-login-as[module]",
        "//tools/idea/platform/core-api[module]",
        "//tools/idea/platform/editor-ui-api[module]",
        "//tools/idea/platform/analysis-api[module]",
        "//tools/idea/platform/indexing-api[module]",
        "//tools/idea/xml/xml-psi-api[module]",
        "//tools/idea/platform/projectModel-api[module]",
        "//tools/idea:lang-impl[module]",
        "//tools/idea/platform/lang-api[module]",
        "//tools/idea:dom-openapi[module]",
        "//tools/idea/java/java-psi-api[module]",
        "//tools/idea/java/java-psi-impl[module]",
        "//tools/idea/plugins/groovy/groovy-psi[module]",
        "//tools/idea:java-analysis-impl[module]",
        "//tools/idea/java/openapi[module]",
        "//tools/idea:java-impl[module]",
        "//tools/idea:jps-builders_and_others[module]",
        "//tools/idea/.idea/libraries:mockito[test]",
    ],
)