summaryrefslogtreecommitdiffstats
path: root/third_party/python/gyp/test/ios/xctests/App/AppDelegate.m
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/python/gyp/test/ios/xctests/App/AppDelegate.m')
-rw-r--r--third_party/python/gyp/test/ios/xctests/App/AppDelegate.m18
1 files changed, 18 insertions, 0 deletions
diff --git a/third_party/python/gyp/test/ios/xctests/App/AppDelegate.m b/third_party/python/gyp/test/ios/xctests/App/AppDelegate.m
new file mode 100644
index 0000000000..825dda75b7
--- /dev/null
+++ b/third_party/python/gyp/test/ios/xctests/App/AppDelegate.m
@@ -0,0 +1,18 @@
+// Copyright 2015 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#import "AppDelegate.h"
+
+@interface AppDelegate ()
+
+@end
+
+@implementation AppDelegate
+
+- (BOOL)application:(UIApplication*)application
+ didFinishLaunchingWithOptions:(NSDictionary*)launchOptions {
+ return YES;
+}
+
+@end