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

Unified Diff: tools/dartium/generate_app/generate_cached_patches.html

Issue 1833373002: Speed up interop patch file creation (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Requires latest change to WebKit Created 4 years, 9 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 | « tools/dartium/generate_app/generate_cached_patches.dart ('k') | tools/dartium/generate_patches.sh » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/dartium/generate_app/generate_cached_patches.html
diff --git a/tools/dartium/generate_app/generate_cached_patches.html b/tools/dartium/generate_app/generate_cached_patches.html
new file mode 100644
index 0000000000000000000000000000000000000000..e6c24b6508b788e336131a84d9d9aafafc1a7777
--- /dev/null
+++ b/tools/dartium/generate_app/generate_cached_patches.html
@@ -0,0 +1,56 @@
+<!DOCTYPE html>
+
+<html>
+ <head>
+ <meta charset="utf-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1">
+
+ <style>
+ div {
+ background: #ffffff;
+ text-align: center;
+ width: 50%;
+ margin: 10% 10% 25% 25%;
+ }
+
+ div#worked {
+ border: 5px solid green;
+ color: green;
+ }
+
+ div#failed {
+ border: 5px solid red;
+ color: red;
+ }
+
+ .cached_file_done {
+ font-family: arial;
+ font-size: 24pt;
+ }
+
+ .cached_file_name {
+ color: gray;
+ font-size: 16pt;
+ vertical-align: text-bottom;
+ }
+ </style>
+
+ <script async type="application/dart" src="generate_cached_patches.dart"></script>
+ <script async src="packages/browser/dart.js"></script>
+ </head>
+ <body>
+ <div id=worked>
+ <span class=cached_file_done>Close Dartium</span><br/><br/>
+ <span class=cached_file_done>File: </span>
+ <span class=cached_file_name>sdk/lib/js/dartium/cached_patches.dart</span><br/><br/>
+ <span class=cached_file_done>GENERATED</span>
+ </div>
+ <div id=failed style="display: none;">
+ <span class=cached_file_done>FAILED</span><br/><br/>
+ <span class=cached_file_done>File: </span>
+ <span class=cached_file_name>sdk/lib/js/dartium/cached_patches.dart</span><br/><br/>
+ <span class=cached_file_done>NOT GENERATED</span>
+ </div>
+ </body>
+</html>
+
« no previous file with comments | « tools/dartium/generate_app/generate_cached_patches.dart ('k') | tools/dartium/generate_patches.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698