Open GoogleCodeExporter opened 9 years ago
Any update on this?
Original comment by parab...@gmail.com
on 13 Oct 2013 at 9:11
I'm also seeing this issue. I can build the chrome_23 branch just fine but not
the trunk.
Original comment by rsuss...@gmail.com
on 27 Nov 2013 at 12:50
Note that the compile error is from this code in
common/mac/testing/GTMSenTestCase.h:
#if (!GTM_IPHONE_SDK) || (GTM_IPHONE_USE_SENTEST)
#import <SenTestingKit/SenTestingKit.h>
#else
#import <Foundation/Foundation.h>
#ifdef __cplusplus
extern "C" {
#endif
Note that the top branch of the #if is being included but it looks like that is
for iphone? Wouldn't we want the bottom branch?
The compile errors go away if I hack in the following to the top of
GTMSenTestCase.h:
#define GTM_IPHONE_USE_SENTEST 0
#define GTM_IPHONE_SDK 1
but then we end up with link errors.
What's the proper fix?
Original comment by rsuss...@gmail.com
on 27 Nov 2013 at 12:55
Original issue reported on code.google.com by
psm...@nuodb.com
on 28 May 2013 at 8:49