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

Unified Diff: Source/bindings/scripts/unstable/v8_interface.py

Issue 169743005: Faster run-bindings-tests (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Removed timings and fast is the only mode. Created 6 years, 10 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: Source/bindings/scripts/unstable/v8_interface.py
diff --git a/Source/bindings/scripts/unstable/v8_interface.py b/Source/bindings/scripts/unstable/v8_interface.py
index e75a97b8dec7a78d8dee13bd3935a786f9a04839..ceb2241b161bbe1234841f2531adcee736df5b39 100644
--- a/Source/bindings/scripts/unstable/v8_interface.py
+++ b/Source/bindings/scripts/unstable/v8_interface.py
@@ -66,7 +66,7 @@ INTERFACE_CPP_INCLUDES = set([
def generate_interface(interface):
includes.clear()
includes.update(INTERFACE_CPP_INCLUDES)
- header_includes = INTERFACE_H_INCLUDES
+ header_includes = set(INTERFACE_H_INCLUDES)
Nils Barth (inactive) 2014/02/24 08:38:56 Could you write this as .copy() instead, to make t
Nils Barth (inactive) 2014/02/25 07:29:59 Actually, I grabbed this in: Use a class for CodeG
terry 2014/02/27 23:40:26 Thanks, frozenset is much nicer. On 2014/02/25 07:
parent_interface = interface.parent
if parent_interface:

Powered by Google App Engine
This is Rietveld 408576698