Skip to content

Commit 60b8901

Browse files
committed
fix the rake biuld to actually build the cpp components necessary for firefox to run native events (you know, for the old versions that still work)
1 parent c820323 commit 60b8901

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

Diff for: Rakefile

+11-2
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,13 @@ task :common_core => [ "//common:core" ]
126126
task :grid => [ "//java/server/src/org/openqa/grid/selenium" ]
127127
task :htmlunit => [ "//java/client/src/org/openqa/selenium/htmlunit" ]
128128
task :ie => [ "//java/client/src/org/openqa/selenium/ie" ]
129-
task :firefox => [ "//java/client/src/org/openqa/selenium/firefox" ]
129+
task :firefox => [
130+
"//cpp:noblur",
131+
"//cpp:noblur64",
132+
"//cpp:imehandler",
133+
"//cpp:imehandler64",
134+
"//java/client/src/org/openqa/selenium/firefox"
135+
]
130136
task :'debug-server' => "//java/client/test/org/openqa/selenium/environment/webserver:WebServer:run"
131137
task :remote => [:remote_common, :remote_server, :remote_client]
132138
task :remote_common => ["//java/client/src/org/openqa/selenium/remote:common"]
@@ -265,7 +271,7 @@ if (python?)
265271
task :test => [ :test_py ]
266272
end
267273

268-
task :build => [:all, :remote, :selenium, :tests]
274+
task :build => [:all, :firefox, :remote, :selenium, :tests]
269275

270276
desc 'Clean build artifacts.'
271277
task :clean do
@@ -465,6 +471,7 @@ task :webdriverjs => [ "//javascript/webdriver:webdriver" ]
465471

466472
task :release => [
467473
:clean,
474+
:build,
468475
'//java/server/src/org/openqa/selenium/server:server:zip',
469476
'//java/server/src/org/openqa/grid/selenium:selenium:zip',
470477
'//java/client/src/org/openqa/selenium:client-combined:zip',
@@ -559,6 +566,8 @@ end
559566

560567
namespace :node do
561568
task :deploy => [
569+
"//cpp:noblur",
570+
"//cpp:noblur64",
562571
"//javascript/firefox-driver:webdriver",
563572
"//javascript/safari-driver:client",
564573
"//javascript/webdriver:asserts_lib",

0 commit comments

Comments
 (0)