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

Unified Diff: Source/core/scripts/action_derivedsourcesallinone.py

Issue 24053003: Support partial interface for test support idls (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Use one InterfaceDependencies.txt file Created 7 years, 3 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/core/scripts/action_derivedsourcesallinone.py
diff --git a/Source/core/scripts/action_derivedsourcesallinone.py b/Source/core/scripts/action_derivedsourcesallinone.py
index fec5088917a9e24775662d03a2aa2a5b268422d1..91a1342bcd9731b1eba08faecf5565d957acd1bf 100644
--- a/Source/core/scripts/action_derivedsourcesallinone.py
+++ b/Source/core/scripts/action_derivedsourcesallinone.py
@@ -202,6 +202,8 @@ def main(args):
idlFileNames = []
cygdriveNames = []
for line in inputFile:
+ if line.find('testing') != -1:
do-not-use 2013/09/11 12:54:24 I am not a fan of hardcoding such things in the sc
kihong 2013/09/14 04:14:43 I removed whole hardcoding things.
+ continue
idlFileName = line.rstrip().split(' ')[0]
if idlFileName.startswith("/cygdrive"):
Nils Barth (inactive) 2013/09/12 03:47:17 Also, could you fix these quotes to single quotes?
kihong 2013/09/14 04:14:43 Done.
cygdriveNames.append(idlFileName)

Powered by Google App Engine
This is Rietveld 408576698