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

Unified Diff: test/ios/xctests/App/AppDelegate.h

Issue 1410113002: Make ninja work with XCTests for iOS. (Closed) Base URL: https://chromium.googlesource.com/external/gyp@master
Patch Set: Fix xcodebuild Created 5 years, 2 months 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/AppDelegate.h
diff --git a/test/win/importlib/dll_no_exports.cc b/test/ios/xctests/App/AppDelegate.h
similarity index 53%
copy from test/win/importlib/dll_no_exports.cc
copy to test/ios/xctests/App/AppDelegate.h
index 96dd7970b7145087624aa7b1326ef9a3a0906824..359af8d0530451442ea7b68007c193a3698acd5d 100644
--- a/test/win/importlib/dll_no_exports.cc
+++ b/test/ios/xctests/App/AppDelegate.h
@@ -2,8 +2,10 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include <windows.h>
+#import <UIKit/UIKit.h>
-BOOL APIENTRY DllMain(HMODULE module, DWORD reason, LPVOID reserved) {
- return TRUE;
-}
+@interface AppDelegate : UIResponder<UIApplicationDelegate>
+
+@property(strong, nonatomic) UIWindow* window;
+
+@end

Powered by Google App Engine
This is Rietveld 408576698