forked from SeleniumHQ/selenium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.desc
36 lines (31 loc) · 882 Bytes
/
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
java_library(name = "selenium-core",
deps = [ "*.html" ],
resources = [
{ "icons" : "core/" },
{ "lib" : "core/" },
{ "scripts" : "core/" },
{ "xpath" : "core/" },
{ "*.html": "core/" },
{ "*.css" : "core/" },
{
":test_runner_html" : "core/TestRunner.hta",
":remote_runner_html" : "core/RemoteRunner.hta",
"//javascript/selenium-atoms" : "core/scripts/atoms.js",
"//third_party/js/sizzle" : "core/lib/sizzle.js",
"selenium-logo.png" : "core/selenium-logo.png"
},
])
js_test(name = "test",
srcs = [
"test/*_test.html",
],
deps = [
"//java/client/test/org/openqa/selenium/javascript",
"//java/server/test/org/openqa/selenium:server-with-tests:uber",
])
rake_file(
name = "test_runner_html",
src = "TestRunner.html")
rake_file(
name = "remote_runner_html",
src = "RemoteRunner.html")