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

Unified Diff: Source/core/core_derived_sources.gyp

Issue 16838012: [ABANDONED] Implement Promises. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 6 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/core_derived_sources.gyp
diff --git a/Source/core/core_derived_sources.gyp b/Source/core/core_derived_sources.gyp
index a947a250ef49bfd9523f04ca918955654e4a5101..e0ecbf13b729a3e36f34878de582200490830350 100644
--- a/Source/core/core_derived_sources.gyp
+++ b/Source/core/core_derived_sources.gyp
@@ -628,6 +628,42 @@
'<@(_inputs)',
],
},
+ {
+ 'action_name': 'generatePromiseCustomScript',
abarth-chromium 2013/06/14 05:07:08 Can we do this with a rule rather than having a se
+ 'inputs': [
+ 'dom/Promise.js',
+ ],
+ 'outputs': [
+ '<(SHARED_INTERMEDIATE_DIR)/webkit/PromiseCustomScript.h',
+ ],
+ 'msvs_cygwin_shell': 0,
+ 'action': [
+ '<(perl_exe)',
+ 'inspector/xxd.pl',
+ 'Promise_js',
+ '<@(_inputs)',
+ '<@(_outputs)'
+ ],
+ 'message': 'Generating PromiseCustomScript.h from Promise.js',
+ },
+ {
+ 'action_name': 'generatePromiseResolverCustomScript',
+ 'inputs': [
+ 'dom/PromiseResolver.js',
+ ],
+ 'outputs': [
+ '<(SHARED_INTERMEDIATE_DIR)/webkit/PromiseResolverCustomScript.h',
+ ],
+ 'msvs_cygwin_shell': 0,
+ 'action': [
+ '<(perl_exe)',
+ 'inspector/xxd.pl',
+ 'PromiseResolver_js',
+ '<@(_inputs)',
+ '<@(_outputs)'
+ ],
+ 'message': 'Generating PromiseResolverCustomScript.h from PromiseResolver.js',
+ },
],
'rules': [
{

Powered by Google App Engine
This is Rietveld 408576698