| Index: test/ninja/action_dependencies/src/emit.py
|
| diff --git a/test/ninja/action_dependencies/src/emit.py b/test/ninja/action_dependencies/src/emit.py
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..2b62efe6ae88a3bafb2327c572dcfba9823e9ac0
|
| --- /dev/null
|
| +++ b/test/ninja/action_dependencies/src/emit.py
|
| @@ -0,0 +1,11 @@
|
| +#!/usr/bin/python
|
| +
|
| +# Copyright (c) 2011 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.
|
| +
|
| +import sys
|
| +
|
| +f = open(sys.argv[1], 'wb')
|
| +f.write('/* Hello World */\n')
|
| +f.close()
|
|
|