Chromium Code Reviews| Index: test/ios/gyptest-extension.py |
| diff --git a/test/ios/gyptest-extension.py b/test/ios/gyptest-extension.py |
| new file mode 100755 |
| index 0000000000000000000000000000000000000000..d3a546ac12d38eac61bc16d1dbcf7f06e0db0bb6 |
| --- /dev/null |
| +++ b/test/ios/gyptest-extension.py |
| @@ -0,0 +1,28 @@ |
| +#!/usr/bin/env python |
| + |
| +# Copyright (c) 2012 Google Inc. All rights reserved. |
|
olivierrobin
2014/07/09 12:46:28
copyright
|
| +# 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']) |
| + |
| + 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() |
| + |