Chromium Code Reviews| Index: chrome/chrome_installer_static.gypi |
| diff --git a/chrome/chrome_installer_static.gypi b/chrome/chrome_installer_static.gypi |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..40f23513263baebaf896e0fca9c3a40b4d37aba2 |
| --- /dev/null |
| +++ b/chrome/chrome_installer_static.gypi |
| @@ -0,0 +1,63 @@ |
| +# Copyright (c) 2016 The Chromium Authors. All rights reserved. |
|
sky
2016/04/20 02:15:22
nit: no (c)
ananta
2016/04/20 20:15:35
Done.
|
| +# Use of this source code is governed by a BSD-style license that can be |
| +# found in the LICENSE file. |
| + |
| +{ |
| + 'target_defaults': { |
| + 'variables': { |
| + 'installer_static_target': 0, |
| + }, |
| + 'target_conditions': [ |
| + # This part is shared between the two versions of the target. |
| + ['installer_static_target==1', { |
| + 'sources': [ |
| + 'install_static/install_util.h', |
| + 'install_static/install_util.cc', |
| + ], |
| + 'include_dirs': [ |
| + '<(DEPTH)', |
| + ], |
| + }], |
| + ], |
| + }, |
| + 'conditions': [ |
| + ['OS=="win"', { |
| + 'targets': [ |
| + { |
| + # GN version: //chrome/install_static |
| + 'target_name': 'install_static_util', |
| + 'type': 'static_library', |
| + 'variables': { |
| + 'installer_static_target': 1, |
| + }, |
| + 'dependencies': [ |
| + 'installer_util_strings', |
| + '<(DEPTH)/base/base.gyp:base', |
| + ], |
| + }, |
| + ], |
| + }], |
| + ['OS=="win" and target_arch=="ia32"', { |
| + 'targets': [ |
| + { |
| + 'target_name': 'install_static_util_nacl_win64', |
| + 'type': 'static_library', |
| + 'variables': { |
| + 'installer_static_target': 1, |
| + }, |
| + 'dependencies': [ |
| + 'installer_util_strings', |
| + ], |
| + 'include_dirs': [ |
| + '<(SHARED_INTERMEDIATE_DIR)', |
| + ], |
| + 'configurations': { |
| + 'Common_Base': { |
| + 'msvs_target_platform': 'x64', |
| + }, |
| + }, |
| + }, |
| + ], |
| + }], |
| + ], |
| +} |