mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
50 lines
1.3 KiB
Python
50 lines
1.3 KiB
Python
# Copyright (c) 2015 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': 'enable_winrt_10_platversion_dll',
|
|
'type': 'shared_library',
|
|
'msvs_enable_winrt': 1,
|
|
'msvs_application_type_revision': '10.0',
|
|
'msvs_target_platform_version':'10.0.10240.0',
|
|
'msvs_target_platform_minversion':'10.0.10240.0'
|
|
'sources': [
|
|
'dllmain.cc',
|
|
],
|
|
},
|
|
{
|
|
'target_name': 'enable_winrt_10_platversion_nominver_dll',
|
|
'type': 'shared_library',
|
|
'msvs_enable_winrt': 1,
|
|
'msvs_application_type_revision': '10.0',
|
|
'msvs_target_platform_version':'10.0.10240.0',
|
|
'sources': [
|
|
'dllmain.cc',
|
|
],
|
|
},
|
|
{
|
|
'target_name': 'enable_winrt_9_platversion_dll',
|
|
'type': 'shared_library',
|
|
'msvs_enable_winrt': 1,
|
|
'msvs_application_type_revision': '10.0',
|
|
'msvs_target_platform_version':'9.0.0.0',
|
|
'msvs_target_platform_minversion':'9.0.0.0'
|
|
'sources': [
|
|
'dllmain.cc',
|
|
],
|
|
},
|
|
{
|
|
'target_name': 'enable_winrt_missing_platversion_dll',
|
|
'type': 'shared_library',
|
|
'msvs_enable_winrt': 1,
|
|
'msvs_application_type_revision': '10.0',
|
|
'sources': [
|
|
'dllmain.cc',
|
|
],
|
|
},
|
|
]
|
|
}
|