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

Unified Diff: content/content_resources.gyp

Issue 9558003: Working around http://code.google.com/p/gyp/issues/detail?id=13 (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 8 years, 10 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: content/content_resources.gyp
===================================================================
--- content/content_resources.gyp (revision 123977)
+++ content/content_resources.gyp (working copy)
@@ -13,6 +13,27 @@
{
'target_name': 'content_resources',
'type': 'none',
+ 'dependencies': [
+ 'generate_content_resources',
+ ],
+ 'inputs': [
bradn 2012/02/29 22:16:43 You shouldn't have the 'inputs' and 'outputs' sect
Myles C. Maxfield 2012/02/29 22:21:51 Done.
+ '<(SHARED_INTERMEDIATE_DIR)/content/content_resources.pak'
+ ],
+ 'outputs': [
+ '<(PRODUCT_DIR)/content_resources.pak',
+ ],
+ 'copies': [
+ {
+ 'destination': '<(PRODUCT_DIR)',
+ 'files': [
+ '<(SHARED_INTERMEDIATE_DIR)/content/content_resources.pak'
+ ],
+ },
+ ],
+ },
+ {
+ 'target_name': 'generate_content_resources',
+ 'type': 'none',
'actions': [
{
'action_name': 'content_resources',
@@ -23,14 +44,6 @@
},
],
'includes': [ '../build/grit_target.gypi' ],
- 'copies': [
- {
- 'destination': '<(PRODUCT_DIR)',
- 'files': [
- '<(SHARED_INTERMEDIATE_DIR)/content/content_resources.pak'
- ],
- },
- ],
},
],
}
« 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