Index: third_party/grpc/tools/buildgen/plugins/expand_bin_attrs.py |
diff --git a/third_party/WebKit/LayoutTests/http/tests/websocket/close_wsh.py b/third_party/grpc/tools/buildgen/plugins/expand_bin_attrs.py |
similarity index 59% |
copy from third_party/WebKit/LayoutTests/http/tests/websocket/close_wsh.py |
copy to third_party/grpc/tools/buildgen/plugins/expand_bin_attrs.py |
index 1b02d66267e294ce83977dac64f075981705647c..c30df2ad892753959bca62af17ef1710be903aa3 100644 |
--- a/third_party/WebKit/LayoutTests/http/tests/websocket/close_wsh.py |
+++ b/third_party/grpc/tools/buildgen/plugins/expand_bin_attrs.py |
@@ -1,4 +1,4 @@ |
-# Copyright 2011, Google Inc. |
+# Copyright 2015-2016, Google Inc. |
# All rights reserved. |
# |
# Redistribution and use in source and binary forms, with or without |
@@ -27,27 +27,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. |
+"""Buildgen expand binary attributes plugin. |
-import logging |
-_GOODBYE_MESSAGE = u'Goodbye' |
+This fills in any optional attributes. |
+""" |
-def web_socket_do_extra_handshake(request): |
- pass # Always accept. |
+def mako_plugin(dictionary): |
+ """The exported plugin code for expand_filegroups. |
-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) |
+ The list of libs in the build.yaml file can contain "filegroups" tags. |
+ These refer to the filegroups in the root object. We will expand and |
+ merge filegroups on the src, headers and public_headers properties. |
+ """ |
-def web_socket_passive_closing_handshake(request): |
- return request.ws_close_code, request.ws_close_reason |
+ targets = dictionary.get('targets') |
+ default_platforms = ['windows', 'posix', 'linux', 'mac'] |
+ |
+ for tgt in targets: |
+ tgt['flaky'] = tgt.get('flaky', False) |
+ tgt['platforms'] = sorted(tgt.get('platforms', default_platforms)) |
+ tgt['ci_platforms'] = sorted(tgt.get('ci_platforms', tgt['platforms'])) |
+ tgt['boringssl'] = tgt.get('boringssl', False) |
+ tgt['zlib'] = tgt.get('zlib', False) |
+ tgt['gtest'] = tgt.get('gtest', False) |
+ |
+ libs = dictionary.get('libs') |
+ for lib in libs: |
+ lib['boringssl'] = lib.get('boringssl', False) |
+ lib['zlib'] = lib.get('zlib', False) |