Disabled MSVC #4267 warnings in common.gypi to enable x64 builds for Windows. Fixed MSVC #4267 warnings in test/testsupport. Added third_party/directxsdk to .gitignore. With http://review.webrtc.org/1070008 landed, this should make it possible to build for x64 on Windows. BUG=1348 TEST=Compiling with http://review.webrtc.org/1070008 applied: set GYP_DEFINES="target_arch=x64" set GYP_GENERATORS=ninja gclient sync ninja -C out\Debug_x64 Review URL: https://webrtc-codereview.appspot.com/1060008 git-svn-id: http://webrtc.googlecode.com/svn/trunk@3464 4adac7df-926f-26a2-2b94-8c16560cd09d
35 lines
946 B
Python
35 lines
946 B
Python
# Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
|
|
#
|
|
# Use of this source code is governed by a BSD-style license
|
|
# that can be found in the LICENSE file in the root of the source
|
|
# tree. An additional intellectual property rights grant can be found
|
|
# in the file PATENTS. All contributing project authors may
|
|
# be found in the AUTHORS file in the root of the source tree.
|
|
|
|
{
|
|
'targets': [
|
|
# kenny
|
|
{
|
|
'target_name': 'iSACFixtest',
|
|
'type': 'executable',
|
|
'dependencies': [
|
|
'iSACFix',
|
|
'<(webrtc_root)/test/test.gyp:test_support',
|
|
],
|
|
'include_dirs': [
|
|
'./fix/test',
|
|
'./fix/interface',
|
|
],
|
|
'sources': [
|
|
'./fix/test/kenny.cc',
|
|
],
|
|
# Disable warnings to enable Win64 build, issue 1323.
|
|
'msvs_disabled_warnings': [
|
|
4267, # size_t to int truncation.
|
|
],
|
|
},
|
|
],
|
|
}
|
|
|
|
# TODO(kma): Add bit-exact test for iSAC-fix.
|