Skip to content

Commit

Permalink
Bump the buck version.
Browse files Browse the repository at this point in the history
  • Loading branch information
shs96c committed Dec 26, 2015
1 parent b58bc8c commit 12782f9
Show file tree
Hide file tree
Showing 10 changed files with 31 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .buckconfig
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
run_transitive = false

[tools]
closure_compiler = third_party/closure/bin/compiler.jar
closure_compiler = //third_party/closure:compiler

[alias]
chrome = //java/client/src/org/openqa/selenium/chrome:chrome
Expand Down
2 changes: 1 addition & 1 deletion .buckversion
Original file line number Diff line number Diff line change
@@ -1 +1 @@
e5a668b276bf61b21c83b807a0715c096888d53f
9ff292b1846b164eefca3ade115ced738fcc4610
2 changes: 2 additions & 0 deletions java/client/test/org/openqa/selenium/BUCK
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,10 @@ java_library(name = 'tests',
'//java/client/test/org/openqa/selenium/testing/drivers:drivers',
'//third_party/java/guava-libraries:guava-libraries',
'//third_party/java/hamcrest:hamcrest',
'//third_party/java/jetty:jetty',
'//third_party/java/junit:junit',
'//third_party/java/mockito:mockito',
'//third_party/java/servlet:servlet-api',
'//third_party/java/webbit:webbit',
],
visibility = [
Expand Down
1 change: 1 addition & 0 deletions java/server/src/org/openqa/grid/shared/BUCK
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,6 @@ java_library(name = 'interfaces',
'//java/server/src/org/openqa/grid/selenium:classes',
'//java/server/src/org/openqa/selenium/server:server',
'//java/server/src/org/openqa/selenium/remote/server:standalone-server-lib',
'//java/server/test/org/openqa/grid/...'
],
)
1 change: 1 addition & 0 deletions java/server/src/org/openqa/selenium/server/BUCK
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ java_library(name = 'server',
'//java/server/src/org/openqa/grid:grid',
'//java/server/src/org/openqa/grid/common:common',
'//java/server/src/org/openqa/grid/selenium:classes',
'//java/server/test/org/openqa/grid/...',
],
)

Expand Down
8 changes: 5 additions & 3 deletions java/server/test/org/openqa/grid/e2e/BUCK
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,17 @@ java_library(name = 'tests',
srcs = glob(['**/*.java'], excludes = SUITES),
deps = [
'//java/client/src/com/thoughtworks/selenium:selenium',
'//java/server/src/org/openqa/grid:grid',
'//java/server/src/org/openqa/grid/common:common',
'//java/server/src/org/openqa/grid/selenium:classes',
'//java/client/src/org/openqa/selenium/chrome:chrome',
'//java/client/src/org/openqa/selenium/htmlunit:htmlunit',
'//java/client/src/org/openqa/selenium/firefox:firefox',
'//java/client/src/org/openqa/selenium/net:net',
'//java/client/src/org/openqa/selenium/remote:remote',
'//java/client/src/org/openqa/selenium/support/ui:wait',
'//java/server/src/org/openqa/selenium/server:server',
'//java/server/src/org/openqa/grid:grid',
'//java/server/src/org/openqa/grid/common:common',
'//java/server/src/org/openqa/grid/selenium:classes',
'//java/server/src/org/openqa/grid/shared:interfaces',
'//third_party/java/guava-libraries:guava-libraries',
'//third_party/java/httpcomponents:httpclient',
'//third_party/java/junit:junit',
Expand Down
6 changes: 6 additions & 0 deletions javascript/safari-driver/BUCK
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,9 @@ js_binary(
'--jscomp_error=uselessCode',
'--jscomp_error=visibility',

'--language_in=ECMASCRIPT6_STRICT',
'--language_out=ECMASCRIPT5_STRICT',

"--output_wrapper='%output%;safaridriver.debug.init();'",
'--third_party=false',
],
Expand Down Expand Up @@ -181,6 +184,9 @@ js_binary(
'--jscomp_error=uselessCode',
'--jscomp_error=visibility',

'--language_in=ECMASCRIPT6_STRICT',
'--language_out=ECMASCRIPT5_STRICT',

"--output_wrapper='%output%;safaridriver.extension.init();'",
'--third_party=false',
],
Expand Down
12 changes: 12 additions & 0 deletions third_party/closure/BUCK
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,15 @@ js_library(name = 'closure',
srcs = glob(['**/*.js']),
visibility = ['PUBLIC'],
)

prebuilt_jar(name = 'compiler-jar',
binary_jar = 'bin/compiler.jar',
)

java_binary(name = 'compiler',
main_class = 'com.google.javascript.jscomp.CommandLineRunner',
deps = [
':compiler-jar',
],
visibility = ['PUBLIC'],
)
1 change: 1 addition & 0 deletions third_party/java/jetty/BUCK
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ java_library(
':jetty-security-repacked',
],
visibility = [
'//java/client/test/org/openqa/selenium:tests',
'//java/client/test/org/openqa/selenium/environment:environment',
'//java/server/src/org/openqa/selenium/remote/server:standalone-server-lib',
'//java/server/src/org/openqa/grid:grid',
Expand Down
1 change: 1 addition & 0 deletions third_party/java/servlet/BUCK
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ prebuilt_jar(name = 'servlet-api',
binary_jar = 'javax.servlet-api-3.1.0.jar',
source_jar = 'javax.servlet-api-3.1.0-sources.jar',
visibility = [
'//java/client/test/org/openqa/selenium:tests',
'//java/client/test/org/openqa/selenium/environment:environment',

# The standalone selenium server
Expand Down

0 comments on commit 12782f9

Please sign in to comment.