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

Unified Diff: test/rules-rebuild/src/main.c

Issue 300016: Fix generators to make sure changes to rule inputs trigger correct rebuilds.... (Closed) Base URL: http://gyp.googlecode.com/svn/trunk/
Patch Set: add same_target.gyp Created 11 years, 1 month 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 | « test/rules-rebuild/gyptest-default.py ('k') | test/rules-rebuild/src/make-sources.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/rules-rebuild/src/main.c
===================================================================
--- test/rules-rebuild/src/main.c (revision 0)
+++ test/rules-rebuild/src/main.c (revision 0)
@@ -0,0 +1,12 @@
+#include <stdio.h>
+
+extern void prog1(void);
+extern void prog2(void);
+
+int main(int argc, char *argv[])
+{
+ printf("Hello from main.c\n");
+ prog1();
+ prog2();
+ return 0;
+}
« no previous file with comments | « test/rules-rebuild/gyptest-default.py ('k') | test/rules-rebuild/src/make-sources.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698