Skip to content

Commit 46a3c90

Browse files
luke-hillbarancev
authored andcommitted
Commented out a load more top level mappings files
If these aren't consumed. We can remove nearly 1000 LOC
1 parent 8ade32a commit 46a3c90

File tree

3 files changed

+28
-21
lines changed

3 files changed

+28
-21
lines changed

rake_tasks/crazy_fun/mappings/gcc.rb

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
require 'rake_tasks/crazy_fun/mappings/common'
22
require 'rake_tasks/selenium_rake/checks'
33

4-
class GccMappings
5-
def add_all(fun)
6-
fun.add_mapping("gcc_library", Gcc::CheckPreconditions.new)
7-
fun.add_mapping("gcc_library", Gcc::CreateTask.new)
8-
fun.add_mapping("gcc_library", Gcc::Build.new)
9-
fun.add_mapping("gcc_library", Gcc::CopyOutputToPrebuilt.new)
10-
11-
# For building binary components of the extension.
12-
fun.add_mapping("mozilla_lib", Gcc::MozBinary::CheckPreconditions.new)
13-
fun.add_mapping("mozilla_lib", Gcc::MozBinary::CreateTask.new)
14-
fun.add_mapping("mozilla_lib", Gcc::MozBinary::AddDependencies.new)
15-
fun.add_mapping("mozilla_lib", Gcc::MozBinary::Build.new)
16-
fun.add_mapping("mozilla_lib", Gcc::CopyOutputToPrebuilt.new)
17-
end
18-
end
4+
# class GccMappings
5+
# def add_all(fun)
6+
# fun.add_mapping("gcc_library", Gcc::CheckPreconditions.new)
7+
# fun.add_mapping("gcc_library", Gcc::CreateTask.new)
8+
# fun.add_mapping("gcc_library", Gcc::Build.new)
9+
# fun.add_mapping("gcc_library", Gcc::CopyOutputToPrebuilt.new)
10+
#
11+
# # For building binary components of the extension.
12+
# fun.add_mapping("mozilla_lib", Gcc::MozBinary::CheckPreconditions.new)
13+
# fun.add_mapping("mozilla_lib", Gcc::MozBinary::CreateTask.new)
14+
# fun.add_mapping("mozilla_lib", Gcc::MozBinary::AddDependencies.new)
15+
# fun.add_mapping("mozilla_lib", Gcc::MozBinary::Build.new)
16+
# fun.add_mapping("mozilla_lib", Gcc::CopyOutputToPrebuilt.new)
17+
# end
18+
# end
1919

2020
module Gcc
2121
def Gcc::out_name(dir, args)
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# module CrazyFun
2+
# module Mappings
3+
# class GccMappings
4+
#
5+
# end
6+
# end
7+
# end
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
class PythonMappings
2-
def add_all(fun)
3-
fun.add_mapping("py_test", Python::AddDependencies.new)
4-
fun.add_mapping("py_test", Python::RunTests.new)
5-
end
6-
end
1+
# class PythonMappings
2+
# def add_all(fun)
3+
# fun.add_mapping("py_test", Python::AddDependencies.new)
4+
# fun.add_mapping("py_test", Python::RunTests.new)
5+
# end
6+
# end

0 commit comments

Comments
 (0)