forked from SeleniumHQ/selenium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.desc
35 lines (31 loc) · 1.13 KB
/
build.desc
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
android_r(name = "r",
manifest = "AndroidManifest.xml",
resource = "res",
out = "gen/org/openqa/selenium/android/app")
java_library(name = "server",
srcs = [
"gen/**/*.java",
"src/java/**/*.java"
],
deps = [
"//java/client/src/org/openqa/selenium/android:android_library",
"//java/client/src/org/openqa/selenium/remote",
"//java/client/src/org/openqa/selenium/support",
"//java/client/src/org/openqa/selenium/io",
"//java/client/src/org/openqa/selenium/logging:logging",
"//java/server/src/org/openqa/selenium/server:server_lite",
"//java/server/src/org/openqa/selenium/server:logging",
"//third_party/java/android",
"//third_party/java/jetty:lite-android:uber",
"//third_party/java/guava-libraries:guava-libraries",
"//third_party/java/servlet-api"
])
android_binary(name = "android-server",
manifest = "AndroidManifest.xml",
resource_dir = "res",
deps = [
":server",
])
# TODO(kurniady): Change the dependency for jetty to //third_party/java/jetty:lite:uber
# after we move away form apkbuilder (which currently causes problem with "about.html"
# resource file in the jar).