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

Side by Side Diff: chrome/installer/installer.gyp

Issue 118247: Add project for setup unittests (Closed)
Patch Set: fix tab char Created 11 years, 6 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
« no previous file with comments | « no previous file | chrome/installer/setup/main.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 { 1 {
2 'variables': { 2 'variables': {
3 'version_py': '../../chrome/tools/build/version.py', 3 'version_py': '../../chrome/tools/build/version.py',
4 'VERSION': '../../chrome/VERSION', 4 'VERSION': '../../chrome/VERSION',
5 # 'BRANDING' is set in the 'conditions' section at the bottom. 5 # 'BRANDING' is set in the 'conditions' section at the bottom.
6 }, 6 },
7 'includes': [ 7 'includes': [
8 '../../build/common.gypi', 8 '../../build/common.gypi',
9 ], 9 ],
10 'targets': [ 10 'targets': [
(...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after
225 'include_dirs': [ 225 'include_dirs': [
226 '../..', 226 '../..',
227 ], 227 ],
228 'sources': [ 228 'sources': [
229 'gcapi/gcapi_test.cc', 229 'gcapi/gcapi_test.cc',
230 'gcapi/gcapi_test.rc', 230 'gcapi/gcapi_test.rc',
231 'gcapi/resource.h', 231 'gcapi/resource.h',
232 ], 232 ],
233 }, 233 },
234 { 234 {
235 'target_name': 'installer_unittests', 235 'target_name': 'util_unittests',
Nicolas Sylvain 2009/06/08 20:19:20 installer_util maybe?
236 'type': 'executable', 236 'type': 'executable',
237 'msvs_guid': '903F8C1E-537A-4C9E-97BE-075147CBE769', 237 'msvs_guid': '903F8C1E-537A-4C9E-97BE-075147CBE769',
238 'msvs_existing_vcproj': 'util/installer_unittests.vcproj', 238 'msvs_existing_vcproj': 'util/util_unittests.vcproj',
239 'dependencies': [ 239 'dependencies': [
240 'installer_util', 240 'installer_util',
241 'installer_util_strings', 241 'installer_util_strings',
242 '../../base/base.gyp:base', 242 '../../base/base.gyp:base',
243 '../../testing/gtest.gyp:gtest', 243 '../../testing/gtest.gyp:gtest',
244 ], 244 ],
245 'include_dirs': [ 245 'include_dirs': [
246 '../..', 246 '../..',
247 ], 247 ],
248 'sources': [ 248 'sources': [
249 'setup/compat_checks_unittest.cc', 249 'setup/compat_checks_unittest.cc',
250 'setup/setup_constants.cc', 250 'setup/setup_constants.cc',
251 'util/copy_tree_work_item_unittest.cc', 251 'util/copy_tree_work_item_unittest.cc',
252 'util/create_dir_work_item_unittest.cc', 252 'util/create_dir_work_item_unittest.cc',
253 'util/create_reg_key_work_item_unittest.cc', 253 'util/create_reg_key_work_item_unittest.cc',
254 'util/delete_reg_value_work_item_unittest.cc', 254 'util/delete_reg_value_work_item_unittest.cc',
255 'util/delete_tree_work_item_unittest.cc', 255 'util/delete_tree_work_item_unittest.cc',
256 'util/google_chrome_distribution_unittest.cc', 256 'util/google_chrome_distribution_unittest.cc',
257 'util/helper_unittest.cc', 257 'util/helper_unittest.cc',
258 'util/installer_unittests.rc', 258 'util/util_unittests.rc',
259 'util/installer_unittests_resource.h', 259 'util/util_unittests_resource.h',
260 'util/move_tree_work_item_unittest.cc', 260 'util/move_tree_work_item_unittest.cc',
261 'util/run_all_unittests.cc', 261 'util/run_all_unittests.cc',
262 'util/set_reg_value_work_item_unittest.cc', 262 'util/set_reg_value_work_item_unittest.cc',
263 'util/work_item_list_unittest.cc', 263 'util/work_item_list_unittest.cc',
264 ], 264 ],
265 }, 265 },
266 { 266 {
267 'target_name': 'installer_util_strings', 267 'target_name': 'installer_util_strings',
268 'type': 'none', 268 'type': 'none',
269 'msvs_guid': '0026A376-C4F1-4575-A1BA-578C69F07013', 269 'msvs_guid': '0026A376-C4F1-4575-A1BA-578C69F07013',
(...skipping 289 matching lines...) Expand 10 before | Expand all | Expand 10 after
559 'variables': { 559 'variables': {
560 'BRANDING': '../../chrome/app/theme/google_chrome/BRANDING', 560 'BRANDING': '../../chrome/app/theme/google_chrome/BRANDING',
561 }, 561 },
562 }, { # else branding!="Chrome" 562 }, { # else branding!="Chrome"
563 'variables': { 563 'variables': {
564 'BRANDING': '../../chrome/app/theme/chromium/BRANDING', 564 'BRANDING': '../../chrome/app/theme/chromium/BRANDING',
565 }, 565 },
566 }], 566 }],
567 ], 567 ],
568 }, 568 },
569 {
570 'target_name': 'setup_unittests',
571 'type': 'executable',
572 'msvs_guid': 'C0AE4E06-F023-460F-BC14-6302CEAC51F8',
573 'dependencies': [
574 'installer_util',
575 '../../base/base.gyp:base',
576 '../../testing/gtest.gyp:gtest',
577 ],
578 'include_dirs': [
579 '../..',
580 ],
581 'sources': [
582 'setup/run_all_unittests.cc',
583 'setup/setup_util.cc',
584 'setup/setup_util_unittest.cc',
585 ],
586 },
569 ], 587 ],
570 }], 588 }],
571 [ 'branding == "Chrome"', { 589 [ 'branding == "Chrome"', {
572 'variables': { 590 'variables': {
573 'BRANDING': '../../chrome/app/theme/google_chrome/BRANDING', 591 'BRANDING': '../../chrome/app/theme/google_chrome/BRANDING',
574 }, 592 },
575 }, { # else branding!="Chrome" 593 }, { # else branding!="Chrome"
576 'variables': { 594 'variables': {
577 'BRANDING': '../../chrome/app/theme/chromium/BRANDING', 595 'BRANDING': '../../chrome/app/theme/chromium/BRANDING',
578 }, 596 },
579 }], 597 }],
580 ], 598 ],
581 } 599 }
OLDNEW
« no previous file with comments | « no previous file | chrome/installer/setup/main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698