# File ext/libv8/paths.rb, line 16 def config RbConfig::MAKEFILE_CONFIG end
# File ext/libv8/paths.rb, line 8 def include_paths ["#{vendored_source_path}/include"] end
# File ext/libv8/paths.rb, line 20 def libv8_object(name) filename = "#{libv8_profile}/libv8_#{name}.#{config['LIBEXT']}" unless File.exists? filename filename = "#{libv8_profile}/obj.target/tools/gyp/libv8_#{name}.#{config['LIBEXT']}" end return filename end
# File ext/libv8/paths.rb, line 28 def libv8_profile base = "#{vendored_source_path}/out/#{Libv8::Arch.libv8_arch}" debug = "#{base}.debug" File.exists?(debug) ? debug : "#{base}.release" end
# File ext/libv8/paths.rb, line 12 def object_paths [libv8_object(:base), libv8_object(:snapshot)] end
# File ext/libv8/paths.rb, line 34 def vendored_source_path File.expand_path "../../../vendor/v8", __FILE__ end