michael@0: # Copyright (c) 2009 Google Inc. All rights reserved. michael@0: # Use of this source code is governed by a BSD-style license that can be michael@0: # found in the LICENSE file. michael@0: michael@0: { michael@0: 'targets': [ michael@0: { michael@0: 'target_name': 'link-objects', michael@0: 'type': 'executable', michael@0: 'actions': [ michael@0: { michael@0: 'action_name': 'build extra object', michael@0: 'inputs': ['extra.c'], michael@0: 'outputs': ['extra.o'], michael@0: 'action': ['gcc', '-o', 'extra.o', '-c', 'extra.c'], michael@0: 'process_outputs_as_sources': 1, michael@0: }, michael@0: ], michael@0: 'sources': [ michael@0: 'base.c', michael@0: ], michael@0: }, michael@0: ], michael@0: }