michael@0: # Copyright (c) 2012 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: """Custom gyp generator that doesn't do much.""" michael@0: michael@0: import gyp.common michael@0: michael@0: generator_default_variables = {} michael@0: michael@0: def GenerateOutput(target_list, target_dicts, data, params): michael@0: f = open("MyBuildFile", "wb") michael@0: f.write("Testing...\n") michael@0: f.close()