Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2564)

Unified Diff: build/win/importlibs/create_import_lib.gypi

Issue 1438853002: Remove all .gyp and .gypi files. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « build/win/asan.gyp ('k') | build/win_precompile.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
deleted file mode 100644
index 9cb0d345480e98dc55357655ca9dde0008ac1a0e..0000000000000000000000000000000000000000
--- a/build/win/importlibs/create_import_lib.gypi
+++ /dev/null
@@ -1,53 +0,0 @@
-# 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)',
- '--output-file', '<@(_outputs)',
- '<(RULE_INPUT_PATH)',
- ],
- 'message': 'Generating import library from <(RULE_INPUT_PATH)',
- 'process_outputs_as_sources': 0,
- },
- ],
-}
« no previous file with comments | « build/win/asan.gyp ('k') | build/win_precompile.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698