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

Side by Side Diff: test/variants/src/variants.c

Issue 13869005: Dropping the scons generator. (Closed) Base URL: http://gyp.googlecode.com/svn/trunk/
Patch Set: Created 7 years, 8 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « test/variants/gyptest-variants.py ('k') | test/variants/src/variants.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #include <stdio.h>
2
3 int main(int argc, char *argv[])
4 {
5 #if defined(VARIANT1)
6 printf("Hello from VARIANT1\n");
7 #elif defined(VARIANT2)
8 printf("Hello from VARIANT2\n");
9 #else
10 printf("Hello, world!\n");
11 #endif
12 return 0;
13 }
OLDNEW
« no previous file with comments | « test/variants/gyptest-variants.py ('k') | test/variants/src/variants.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698