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

Unified Diff: test/mac/xctest/TestSupport/testsupport.gyp

Issue 51413002: Adds generator support for Xcode 5 xctest targets. (Closed) Base URL: http://gyp.googlecode.com/svn/trunk
Patch Set: Created 7 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
« pylib/gyp/generator/xcode.py ('K') | « test/mac/xctest/TestSupport/TestSupport.m ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mac/xctest/TestSupport/testsupport.gyp
diff --git a/test/mac/xctest/TestSupport/testsupport.gyp b/test/mac/xctest/TestSupport/testsupport.gyp
new file mode 100644
index 0000000000000000000000000000000000000000..2a2249d1b8b389797401e6cd1c05ce02d0a254ad
--- /dev/null
+++ b/test/mac/xctest/TestSupport/testsupport.gyp
@@ -0,0 +1,26 @@
+# Copyright (c) 2013 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.
+{
+ 'targets': [
+ {
+ 'target_name': 'test_support',
+ 'type': 'static_library',
+ 'dependencies': [
+ '../Shared/shared.gyp:shared',
+ ],
+ 'sources': [
+ 'Shared+TestSupportCategory.h',
+ 'Shared+TestSupportCategory.m',
+ 'TestSupport.h',
+ 'TestSupport.m',
+ ],
+ 'direct_dependent_settings': {
+ 'include_dirs': [ '.' ],
+ },
+ 'xcode_settings': {
+ 'GCC_SYMBOLS_PRIVATE_EXTERN': 'NO',
+ },
+ },
+ ],
+}
« pylib/gyp/generator/xcode.py ('K') | « test/mac/xctest/TestSupport/TestSupport.m ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698