Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

Unified Diff: third_party/grpc/tools/distrib/docker_for_windows.rb

Issue 1932353002: Initial checkin of gRPC to third_party/ Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/grpc/tools/distrib/docker_for_windows.rb
diff --git a/third_party/WebKit/LayoutTests/http/tests/websocket/close_wsh.py b/third_party/grpc/tools/distrib/docker_for_windows.rb
old mode 100644
new mode 100755
similarity index 64%
copy from third_party/WebKit/LayoutTests/http/tests/websocket/close_wsh.py
copy to third_party/grpc/tools/distrib/docker_for_windows.rb
index 1b02d66267e294ce83977dac64f075981705647c..d72765dde50cc053158d77a6d82a193d6e2ebf98
--- a/third_party/WebKit/LayoutTests/http/tests/websocket/close_wsh.py
+++ b/third_party/grpc/tools/distrib/docker_for_windows.rb
@@ -1,4 +1,5 @@
-# Copyright 2011, Google Inc.
+#!/usr/bin/env ruby
+# Copyright 2016, Google Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
@@ -27,27 +28,34 @@
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+def grpc_root()
+ File.expand_path(File.join(File.dirname(__FILE__), '..', '..'))
+end
-import logging
-_GOODBYE_MESSAGE = u'Goodbye'
+def docker_for_windows_image()
+ require 'digest'
+ dockerfile = File.join(grpc_root, 'third_party', 'rake-compiler-dock', 'Dockerfile')
+ dockerpath = File.dirname(dockerfile)
+ version = Digest::SHA1.file(dockerfile).hexdigest
+ image_name = 'grpc/rake-compiler-dock:' + version
+ cmd = "docker build -t #{image_name} --file #{dockerfile} #{dockerpath}"
+ puts cmd
+ system cmd
+ raise "Failed to build the docker image." unless $? == 0
+ image_name
+end
-def web_socket_do_extra_handshake(request):
- pass # Always accept.
+def docker_for_windows(args)
+ require 'rake_compiler_dock'
+ args = 'bash -l' if args.empty?
-def web_socket_transfer_data(request):
- while True:
- line = request.ws_stream.receive_message()
- if line is None:
- return
- if isinstance(line, unicode):
- request.ws_stream.send_message(line, binary=False)
- if line == _GOODBYE_MESSAGE:
- return
- else:
- request.ws_stream.send_message(line, binary=True)
+ ENV['RAKE_COMPILER_DOCK_IMAGE'] = docker_for_windows_image
+ RakeCompilerDock.sh args
+end
-def web_socket_passive_closing_handshake(request):
- return request.ws_close_code, request.ws_close_reason
+if __FILE__ == $0
+ docker_for_windows $*.join(' ')
+end
« no previous file with comments | « third_party/grpc/tools/distrib/clang_format_code.sh ('k') | third_party/grpc/tools/distrib/guard_headers.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698