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

Side by Side Diff: chrome/chrome_installer.gypi

Issue 6490024: New installation validator machinery to check the machine state.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 10 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/chrome.gyp ('k') | chrome/chrome_installer_util.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'variables': { 6 'variables': {
7 'lastchange_path': '<(SHARED_INTERMEDIATE_DIR)/build/LASTCHANGE', 7 'lastchange_path': '<(SHARED_INTERMEDIATE_DIR)/build/LASTCHANGE',
8 # 'branding_dir' is set in the 'conditions' section at the bottom. 8 # 'branding_dir' is set in the 'conditions' section at the bottom.
9 }, 9 },
10 'conditions': [ 10 'conditions': [
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 'target_name': 'installer_util_unittests', 61 'target_name': 'installer_util_unittests',
62 'type': 'executable', 62 'type': 'executable',
63 'msvs_guid': '903F8C1E-537A-4C9E-97BE-075147CBE769', 63 'msvs_guid': '903F8C1E-537A-4C9E-97BE-075147CBE769',
64 'dependencies': [ 64 'dependencies': [
65 'installer_util', 65 'installer_util',
66 'installer_util_strings', 66 'installer_util_strings',
67 '<(DEPTH)/base/base.gyp:base', 67 '<(DEPTH)/base/base.gyp:base',
68 '<(DEPTH)/base/base.gyp:base_i18n', 68 '<(DEPTH)/base/base.gyp:base_i18n',
69 '<(DEPTH)/base/base.gyp:test_support_base', 69 '<(DEPTH)/base/base.gyp:test_support_base',
70 '<(DEPTH)/build/temp_gyp/googleurl.gyp:googleurl', 70 '<(DEPTH)/build/temp_gyp/googleurl.gyp:googleurl',
71 '<(DEPTH)/testing/gmock.gyp:gmock',
71 '<(DEPTH)/testing/gtest.gyp:gtest', 72 '<(DEPTH)/testing/gtest.gyp:gtest',
72 ], 73 ],
73 'include_dirs': [ 74 'include_dirs': [
74 '<(DEPTH)', 75 '<(DEPTH)',
75 ], 76 ],
76 'sources': [ 77 'sources': [
77 'installer/setup/compat_checks_unittest.cc', 78 'installer/setup/compat_checks_unittest.cc',
78 'installer/setup/setup_constants.cc', 79 'installer/setup/setup_constants.cc',
79 'installer/util/browser_distribution_unittest.cc', 80 'installer/util/browser_distribution_unittest.cc',
80 'installer/util/channel_info_unittest.cc', 81 'installer/util/channel_info_unittest.cc',
81 'installer/util/copy_tree_work_item_unittest.cc', 82 'installer/util/copy_tree_work_item_unittest.cc',
82 'installer/util/create_dir_work_item_unittest.cc', 83 'installer/util/create_dir_work_item_unittest.cc',
83 'installer/util/create_reg_key_work_item_unittest.cc', 84 'installer/util/create_reg_key_work_item_unittest.cc',
84 'installer/util/delete_after_reboot_helper_unittest.cc', 85 'installer/util/delete_after_reboot_helper_unittest.cc',
85 'installer/util/delete_reg_value_work_item_unittest.cc', 86 'installer/util/delete_reg_value_work_item_unittest.cc',
86 'installer/util/delete_tree_work_item_unittest.cc', 87 'installer/util/delete_tree_work_item_unittest.cc',
87 'installer/util/google_chrome_distribution_unittest.cc', 88 'installer/util/google_chrome_distribution_unittest.cc',
88 'installer/util/google_update_settings_unittest.cc', 89 'installer/util/google_update_settings_unittest.cc',
89 'installer/util/install_util_unittest.cc', 90 'installer/util/install_util_unittest.cc',
91 'installer/util/installation_validator_unittest.cc',
90 'installer/util/installer_state_unittest.cc', 92 'installer/util/installer_state_unittest.cc',
91 'installer/util/installer_util_unittests.rc', 93 'installer/util/installer_util_unittests.rc',
92 'installer/util/installer_util_unittests_resource.h', 94 'installer/util/installer_util_unittests_resource.h',
93 'installer/util/language_selector_unittest.cc', 95 'installer/util/language_selector_unittest.cc',
94 'installer/util/lzma_util_unittest.cc', 96 'installer/util/lzma_util_unittest.cc',
95 'installer/util/master_preferences_unittest.cc', 97 'installer/util/master_preferences_unittest.cc',
96 'installer/util/move_tree_work_item_unittest.cc', 98 'installer/util/move_tree_work_item_unittest.cc',
97 'installer/util/product_unittest.h', 99 'installer/util/product_unittest.h',
98 'installer/util/product_unittest.cc', 100 'installer/util/product_unittest.cc',
99 'installer/util/product_state_unittest.cc', 101 'installer/util/product_state_unittest.cc',
(...skipping 789 matching lines...) Expand 10 before | Expand all | Expand 10 after
889 }, 891 },
890 }], 892 }],
891 ], 893 ],
892 } 894 }
893 895
894 # Local Variables: 896 # Local Variables:
895 # tab-width:2 897 # tab-width:2
896 # indent-tabs-mode:nil 898 # indent-tabs-mode:nil
897 # End: 899 # End:
898 # vim: set expandtab tabstop=2 shiftwidth=2: 900 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « chrome/chrome.gyp ('k') | chrome/chrome_installer_util.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698