Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(132)

Unified Diff: test/ios/xctests/App/main.m

Issue 1410113002: Make ninja work with XCTests for iOS. (Closed) Base URL: https://chromium.googlesource.com/external/gyp@master
Patch Set: make work without certs Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: test/ios/xctests/App/main.m
diff --git a/test/ios/extension/ExtensionContainer/main.m b/test/ios/xctests/App/main.m
similarity index 58%
copy from test/ios/extension/ExtensionContainer/main.m
copy to test/ios/xctests/App/main.m
index 47aecb514839c4b87ad5ae72045f5cb54e1cf5a9..0faca6bd80c3e61ae3358655384762ecee89fdb3 100644
--- a/test/ios/extension/ExtensionContainer/main.m
+++ b/test/ios/xctests/App/main.m
@@ -1,13 +1,13 @@
-// Copyright (c) 2014 Google Inc. All rights reserved.
+// Copyright (c) 2015 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.
-//
+
#import <UIKit/UIKit.h>
#import "AppDelegate.h"
int main(int argc, char* argv[]) {
@autoreleasepool {
- return UIApplicationMain(argc, argv, nil,
- NSStringFromClass([AppDelegate class]));
+ return UIApplicationMain(
+ argc, argv, nil, NSStringFromClass([AppDelegate class]));
}
}

Powered by Google App Engine
This is Rietveld 408576698