mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
49 lines
1.1 KiB
Python
49 lines
1.1 KiB
Python
# Copyright (c) 2012 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_rl_md',
|
|
'type': 'executable',
|
|
'msvs_settings': {
|
|
'VCCLCompilerTool': {
|
|
'RuntimeLibrary': '2'
|
|
}
|
|
},
|
|
'sources': ['runtime-library-md.cc'],
|
|
},
|
|
{
|
|
'target_name': 'test_rl_mdd',
|
|
'type': 'executable',
|
|
'msvs_settings': {
|
|
'VCCLCompilerTool': {
|
|
'RuntimeLibrary': '3'
|
|
}
|
|
},
|
|
'sources': ['runtime-library-mdd.cc'],
|
|
},
|
|
{
|
|
'target_name': 'test_rl_mt',
|
|
'type': 'executable',
|
|
'msvs_settings': {
|
|
'VCCLCompilerTool': {
|
|
'RuntimeLibrary': '0'
|
|
}
|
|
},
|
|
'sources': ['runtime-library-mt.cc'],
|
|
},
|
|
{
|
|
'target_name': 'test_rl_mtd',
|
|
'type': 'executable',
|
|
'msvs_settings': {
|
|
'VCCLCompilerTool': {
|
|
'RuntimeLibrary': '1'
|
|
}
|
|
},
|
|
'sources': ['runtime-library-mtd.cc'],
|
|
},
|
|
]
|
|
}
|