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

Unified Diff: runtime/tools/create_resources.py

Issue 310153003: Do not include DevTools version of Observatory with standalone VM (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 7 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/tools/create_resources.py
diff --git a/runtime/tools/create_resources.py b/runtime/tools/create_resources.py
index 32ffdb1a183996ff0b9036b23b10cd916e57b3db..b4f7fa8d4a5ce044f546d86ae6a2a8816e403196 100644
--- a/runtime/tools/create_resources.py
+++ b/runtime/tools/create_resources.py
@@ -127,6 +127,9 @@ def main(args):
src_path = os.path.join(dirname, f)
if (os.path.isdir(src_path)):
continue
+ # Skip devtools version
+ if (src_path.find("index_devtools") != -1):
+ continue
files.append(src_path)
for arg in args:
@@ -145,4 +148,4 @@ def main(args):
return -1
if __name__ == '__main__':
- sys.exit(main(sys.argv))
+ sys.exit(main(sys.argv))
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698