diff options
Diffstat (limited to 'tools/gyp/test/scons_tools/tools.c')
-rw-r--r-- | tools/gyp/test/scons_tools/tools.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tools/gyp/test/scons_tools/tools.c b/tools/gyp/test/scons_tools/tools.c new file mode 100644 index 0000000000..78dc0e31ef --- /dev/null +++ b/tools/gyp/test/scons_tools/tools.c @@ -0,0 +1,13 @@ +/* Copyright (c) 2009 Google Inc. All rights reserved. + * Use of this source code is governed by a BSD-style license that can be + * found in the LICENSE file. */ + +#include <stdio.h> + +int main(int argc, char *argv[]) +{ +#ifdef THIS_TOOL + printf("Hello, world!\n"); +#endif + return 0; +} |