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

Unified Diff: pkg/pkg_files.gyp

Issue 396753006: Work around a Gyp bug by creating a stamp file for the http package. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 5 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
« pkg/pkg.gyp ('K') | « pkg/pkg.gyp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/pkg_files.gyp
diff --git a/pkg/pkg_files.gyp b/pkg/pkg_files.gyp
index 787e5dd3aeb11cf9032ca64d093c28b27098beff..e091dcd9377ee29ec6c13825798f26a96f47d1bb 100644
--- a/pkg/pkg_files.gyp
+++ b/pkg/pkg_files.gyp
@@ -43,6 +43,26 @@
],
},
],
- }
+ },
+ {
+ 'target_name': 'http_files_stamp',
+ 'type': 'none',
+ 'actions': [
+ {
+ 'action_name': 'make_http_files_stamp',
+ 'inputs': [
+ '../tools/create_timestamp_file.py',
+ '<!@(["python", "../tools/list_files.py", "\\.dart$", "http/lib"])',
+ ],
+ 'outputs': [
+ '<(SHARED_INTERMEDIATE_DIR)/http_files.stamp',
+ ],
+ 'action': [
+ 'python', '../tools/create_timestamp_file.py',
+ '<@(_outputs)',
+ ],
+ },
+ ],
+ },
],
}
« pkg/pkg.gyp ('K') | « pkg/pkg.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698