| OLD | NEW |
| 1 # Copyright (c) 2009 Google Inc. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 1 { | 5 { |
| 2 'targets': [ | 6 'targets': [ |
| 3 { | 7 { |
| 4 'target_name': 'null_input', | 8 'target_name': 'null_input', |
| 5 'type': 'executable', | 9 'type': 'executable', |
| 6 'msvs_cygwin_shell': 0, | 10 'msvs_cygwin_shell': 0, |
| 7 'actions': [ | 11 'actions': [ |
| 8 { | 12 { |
| 9 'action_name': 'generate_main', | 13 'action_name': 'generate_main', |
| 10 'process_outputs_as_sources': 1, | 14 'process_outputs_as_sources': 1, |
| 11 'inputs': [], | 15 'inputs': [], |
| 12 'outputs': [ | 16 'outputs': [ |
| 13 '<(INTERMEDIATE_DIR)/main.c', | 17 '<(INTERMEDIATE_DIR)/main.c', |
| 14 ], | 18 ], |
| 15 'action': [ | 19 'action': [ |
| 16 # TODO: we can't just use <(_outputs) here?! | 20 # TODO: we can't just use <(_outputs) here?! |
| 17 'python', 'generate_main.py', '<(INTERMEDIATE_DIR)/main.c', | 21 'python', 'generate_main.py', '<(INTERMEDIATE_DIR)/main.c', |
| 18 ], | 22 ], |
| 19 }, | 23 }, |
| 20 ], | 24 ], |
| 21 }, | 25 }, |
| 22 ], | 26 ], |
| 23 } | 27 } |
| OLD | NEW |