Sha256: 82209cdddd87dd450bc8f7c443c773d39b60b3b1b23e3a732dfa50072215583a
Contents?: true
Size: 704 Bytes
Versions: 1
Compression:
Stored size: 704 Bytes
Contents
#!/usr/bin/env python # Copyright (c) 2014 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 ios app extensions are built correctly. """ import TestGyp import TestMac import sys if sys.platform == 'darwin' and TestMac.Xcode.Version()>="0600": test = TestGyp.TestGyp(formats=['ninja', 'xcode']) test.run_gyp('extension.gyp', chdir='extension') test.build('extension.gyp', 'ExtensionContainer', chdir='extension') # Test that the extension is .appex test.built_file_must_exist( 'ExtensionContainer.app/PlugIns/ActionExtension.appex', chdir='extension') test.pass_test()
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
tree-sitter-0.1.0 | ext/tree-sitter/tree-sitter/externals/gyp/test/ios/gyptest-extension.py |