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

Unified Diff: chrome/installer/installer_tools.gyp

Issue 1393633006: Remove duplication in mini_installer.gyp/.gypi - Take 2 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix. Created 5 years, 2 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 | « no previous file | chrome/installer/mini_installer.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/installer/installer_tools.gyp
diff --git a/chrome/installer/installer_tools.gyp b/chrome/installer/installer_tools.gyp
new file mode 100644
index 0000000000000000000000000000000000000000..c926cafdad4e27af97a191e6a3006babd64af92b
--- /dev/null
+++ b/chrome/installer/installer_tools.gyp
@@ -0,0 +1,63 @@
+# Copyright (c) 2011 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.
+
+{
+ 'variables': {
+ 'version_py': '<(DEPTH)/build/util/version.py',
+ 'version_path': '<(DEPTH)/chrome/VERSION',
+ 'lastchange_path': '<(DEPTH)/build/util/LASTCHANGE',
+ 'branding_dir': '<(DEPTH)/chrome/app/theme/<(branding_path_component)',
+ 'msvs_use_common_release': 0,
+ 'msvs_use_common_linker_extras': 0,
+ },
+ 'conditions': [
+ ['OS=="win"', {
+ 'targets': [
+ {
+ 'target_name': 'validate_installation',
+ 'type': 'executable',
+ 'dependencies': [
+ '<(DEPTH)/base/base.gyp:base',
+ '<(DEPTH)/chrome/chrome.gyp:installer_util',
+ '<(DEPTH)/chrome/chrome.gyp:installer_util_strings',
+ '<(DEPTH)/chrome/common_constants.gyp:common_constants',
+ ],
+ 'include_dirs': [
+ '<(DEPTH)',
+ ],
+ 'sources': [
+ 'tools/validate_installation.rc',
+ 'tools/validate_installation_main.cc',
+ 'tools/validate_installation_resource.h',
+ ],
+ },
+ {
+ # A target that is outdated if any of the mini_installer test sources
+ # are modified.
+ 'target_name': 'test_installer_sentinel',
+ 'type': 'none',
+ 'includes': [
+ '../test/mini_installer/test_installer.gypi',
+ ],
+ 'actions': [
+ {
+ 'action_name': 'touch_sentinel',
+ 'variables': {
+ 'touch_sentinel_py': '../tools/build/win/touch_sentinel.py',
+ },
+ 'inputs': [
+ '<@(test_installer_sources)', # from test_installer.gypi
+ '<(touch_sentinel_py)',
+ ],
+ 'outputs': [
+ '<(SHARED_INTERMEDIATE_DIR)/chrome/installer/test_installer_sentinel',
+ ],
+ 'action': ['python', '<(touch_sentinel_py)', '<@(_outputs)'],
+ },
+ ],
+ },
+ ],
+ }],
+ ],
+}
« no previous file with comments | « no previous file | chrome/installer/mini_installer.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698