From 67446f62fee5dc7369d14201f211c180c11acbb9 Mon Sep 17 00:00:00 2001
From: Armin Novak <armin.novak@thincast.com>
Date: Thu, 8 Oct 2015 16:19:31 +0200
Subject: [PATCH 3/3] Fixed IOError.

---
 .../Source/bindings/scripts/compute_interfaces_info_individual.py       | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/chromium/third_party/WebKit/Source/bindings/scripts/compute_interfaces_info_individual.py b/chromium/third_party/WebKit/Source/bindings/scripts/compute_interfaces_info_individual.py
index 92c28f2..cd9cc4c 100755
--- a/chromium/third_party/WebKit/Source/bindings/scripts/compute_interfaces_info_individual.py
+++ b/chromium/third_party/WebKit/Source/bindings/scripts/compute_interfaces_info_individual.py
@@ -184,6 +184,8 @@ class InterfaceInfoCollector(object):
     def collect_info(self, idl_filename):
         """Reads an idl file and collects information which is required by the
         binding code generation."""
+        idl_filename = os.path.normpath(os.path.join(os.getcwd(), idl_filename))
+
         definitions = self.reader.read_idl_file(idl_filename)
         if definitions.interfaces:
             definition = next(definitions.interfaces.itervalues())
-- 
1.9.5.msysgit.0

