Chromium Code Reviews| Index: build/win/importlibs/create_import_lib.gypi |
| diff --git a/build/win/importlibs/create_import_lib.gypi b/build/win/importlibs/create_import_lib.gypi |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..1d432176179dbd5f8d7d382f47037fdaf9611f7b |
| --- /dev/null |
| +++ b/build/win/importlibs/create_import_lib.gypi |
| @@ -0,0 +1,55 @@ |
| +# Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| +# Use of this source code is governed by a BSD-style license that can be |
| +# found in the LICENSE file. |
| + |
| +# This file is meant to be included into a target to provide a rule |
| +# to create import libraries from an import description file in a consistent |
| +# manner. |
| +# |
| +# To use this, create a gyp target with the following form: |
| +# { |
| +# 'target_name': 'my_proto_lib', |
| +# 'type': 'none', |
| +# 'sources': [ |
| +# 'foo.imports', |
| +# 'bar.imports', |
| +# ], |
| +# 'variables': { |
| +# # Optional, see below: 'proto_in_dir': '.' |
| +# 'create_importlib': 'path-to-script', |
| +# 'lib_dir': 'path-to-output-directory', |
| +# }, |
| +# 'includes': ['path/to/this/gypi/file'], |
| +# } |
| +# |
| +# This will generate import libraries named 'foo.lib' and 'bar.lib' in the |
| +# specified lib directory. |
| + |
| +{ |
| + 'variables': { |
| + 'create_importlib': '<(DEPTH)/build/win/importlibs/create_importlib_win.py', |
| + 'lib_dir': '<(PRODUCT_DIR)/lib', |
| + }, |
| + 'rules': [ |
| + { |
| + 'rule_name': 'create_import_lib', |
| + 'extension': 'imports', |
| + 'inputs': [ |
| + '<(create_importlib)', |
| + ], |
| + 'outputs': [ |
| + '<(lib_dir)/<(RULE_INPUT_ROOT).lib', |
| + ], |
| + 'action': [ |
| + 'python', |
| + '<(create_importlib)', |
| + '--verbose', |
| + '--output-file', '<(lib_dir)/<(RULE_INPUT_ROOT).lib', |
|
M-A Ruel
2013/03/26 12:59:14
Or <@(_outputs), as you prefer.
Sigurður Ásgeirsson
2013/03/26 15:35:35
Done.
|
| + '<(RULE_INPUT_PATH)', |
| + ], |
| + 'msvs_cygwin_shell': 0, |
| + 'message': 'Generating import library from <(RULE_INPUT_PATH)', |
| + 'process_outputs_as_sources': 0, |
| + }, |
| + ], |
| +} |