18 lines
514 B
Python
18 lines
514 B
Python
# Copyright 2014 Google Inc. All Rights Reserved.
|
|
|
|
# Since the Xcode generator for gyp doesn't support host targets,
|
|
# the workaround is to add a special xcode_settings section to any
|
|
# target that must be built for the host. This file encapsulates
|
|
# those settings such that they can be included into any target.
|
|
|
|
{
|
|
'xcode_settings': {
|
|
'CODE_SIGN_REQUIRED':'NO',
|
|
'CODE_SIGN_IDENTITY':'',
|
|
'SDKROOT': 'macosx',
|
|
'ONLY_ACTIVE_ARCH': 'YES',
|
|
'VALID_ARCHS':'x86_64',
|
|
'ARCHS': 'x86_64',
|
|
},
|
|
}
|