1#!/usr/bin/env python 2 3# Copyright (c) 2012 Google Inc. All rights reserved. 4# Use of this source code is governed by a BSD-style license that can be 5# found in the LICENSE file. 6 7""" 8Verifies that a dependency on two gyp files with the same name do not create a 9uid collision in the resulting generated xcode file. 10""" 11 12import TestGyp 13 14import sys 15 16test = TestGyp.TestGyp() 17 18test.run_gyp('test.gyp', chdir='library') 19 20test.pass_test() 21