diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /media/webrtc/trunk/tools/gyp/test/standalone | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'media/webrtc/trunk/tools/gyp/test/standalone')
-rw-r--r-- | media/webrtc/trunk/tools/gyp/test/standalone/gyptest-standalone.py | 33 | ||||
-rw-r--r-- | media/webrtc/trunk/tools/gyp/test/standalone/standalone.gyp | 12 |
2 files changed, 45 insertions, 0 deletions
diff --git a/media/webrtc/trunk/tools/gyp/test/standalone/gyptest-standalone.py b/media/webrtc/trunk/tools/gyp/test/standalone/gyptest-standalone.py new file mode 100644 index 000000000..87143706a --- /dev/null +++ b/media/webrtc/trunk/tools/gyp/test/standalone/gyptest-standalone.py @@ -0,0 +1,33 @@ +#!/usr/bin/env python + +# Copyright (c) 2012 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. + +""" +Verifies that a project hierarchy created with the --generator-output= +option can be built even when it's relocated to a different path. +""" + +import TestGyp +import os + +test = TestGyp.TestGyp() + +test.run_gyp('standalone.gyp', '-Gstandalone') + +# Look at all the files in the tree to make sure none +# of them reference the gyp file. +for root, dirs, files in os.walk("."): + for file in files: + # ignore ourself + if os.path.splitext(__file__)[0] in file: + continue + file = os.path.join(root, file) + contents = open(file).read() + if 'standalone.gyp' in contents: + print 'gyp file referenced in generated output: %s' % file + test.fail_test() + + +test.pass_test() diff --git a/media/webrtc/trunk/tools/gyp/test/standalone/standalone.gyp b/media/webrtc/trunk/tools/gyp/test/standalone/standalone.gyp new file mode 100644 index 000000000..b2a678543 --- /dev/null +++ b/media/webrtc/trunk/tools/gyp/test/standalone/standalone.gyp @@ -0,0 +1,12 @@ +# Copyright (c) 2009 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. + +{ + 'targets': [ + { + 'target_name' : 'foo', + 'type' : 'executable' + }, + ] +} |