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

Unified Diff: chrome/version_resource_rules.gypi

Issue 2321703002: Remove all gyp[i] files in //chrome (Closed)
Patch Set: merge Created 4 years, 3 months 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 | « chrome/tools/convert_dict/convert_dict.gyp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/version_resource_rules.gypi
diff --git a/chrome/version_resource_rules.gypi b/chrome/version_resource_rules.gypi
deleted file mode 100644
index cf774f9578468f2c653e72c2976f21ee488d384b..0000000000000000000000000000000000000000
--- a/chrome/version_resource_rules.gypi
+++ /dev/null
@@ -1,70 +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 defines rules that allow you to generate version resources for
-# Windows images.
-#
-# GN: Use the "process_version" template in //chrome/version.gni.
-# For an example, see the target //chrome:chrome_exe_version
-
-# Include 'version.gypi' at the top of your GYP file to define
-# the required variables:
-#
-# 'includes': [
-# '<(DEPTH)/build/util/version.gypi',
-# ],
-#
-# Then include this rule file in a productname_resources target:
-#
-# {
-# 'target_name': 'chrome_version_resources',
-# ...
-# 'variables': {
-# 'output_dir': 'product_version',
-# 'branding_path': 'some/branding/file',
-# 'template_input_path': 'some/product_version.rc.version',
-# 'extra_variable_files_arguments': [ '-f', 'some/file/with/variables' ],
-# 'extra_variable_files': [ 'some/file/with/variables' ], # NOTE: matches that above
-# },
-# 'includes': [
-# '<(DEPTH)/chrome/version_resource_rules.gypi',
-# ],
-# }
-#
-{
- 'rules': [
- {
- 'rule_name': 'version',
- 'extension': 'ver',
- 'variables': {
- 'lastchange_path': '<(DEPTH)/build/util/LASTCHANGE',
- 'extra_variable_files%': [],
- 'extra_variable_files_arguments%': [],
- },
- 'inputs': [
- '<(version_py_path)',
- '<(version_path)',
- '<(branding_path)',
- '<(lastchange_path)',
- '<@(extra_variable_files)',
- '<(template_input_path)',
- ],
- 'outputs': [
- '<(SHARED_INTERMEDIATE_DIR)/<(output_dir)/<(RULE_INPUT_ROOT)_version.rc',
- ],
- 'action': [
- 'python',
- '<(version_py_path)',
- '-f', '<(RULE_INPUT_PATH)',
- '-f', '<(version_path)',
- '-f', '<(branding_path)',
- '-f', '<(lastchange_path)',
- '<@(extra_variable_files_arguments)',
- '<(template_input_path)',
- '<@(_outputs)',
- ],
- 'message': 'Generating version information in <@(_outputs)'
- },
- ],
-}
« no previous file with comments | « chrome/tools/convert_dict/convert_dict.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698