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

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

Issue 119322: Trying to re-land r17758 (Closed)
Patch Set: 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_path': '../../chrome/VERSION', 4 'version_path': '../../chrome/VERSION',
5 'lastchange_path': '<(SHARED_INTERMEDIATE_DIR)/build/LASTCHANGE', 5 'lastchange_path': '<(SHARED_INTERMEDIATE_DIR)/build/LASTCHANGE',
6 # 'branding_dir' is set in the 'conditions' section at the bottom. 6 # 'branding_dir' is set in the 'conditions' section at the bottom.
7 }, 7 },
8 'includes': [ 8 'includes': [
9 '../../build/common.gypi', 9 '../../build/common.gypi',
10 ], 10 ],
(...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after
231 'include_dirs': [ 231 'include_dirs': [
232 '../..', 232 '../..',
233 ], 233 ],
234 'sources': [ 234 'sources': [
235 'gcapi/gcapi_test.cc', 235 'gcapi/gcapi_test.cc',
236 'gcapi/gcapi_test.rc', 236 'gcapi/gcapi_test.rc',
237 'gcapi/resource.h', 237 'gcapi/resource.h',
238 ], 238 ],
239 }, 239 },
240 { 240 {
241 'target_name': 'installer_unittests', 241 'target_name': 'installer_util_unittests',
242 'type': 'executable', 242 'type': 'executable',
243 'msvs_guid': '903F8C1E-537A-4C9E-97BE-075147CBE769', 243 'msvs_guid': '903F8C1E-537A-4C9E-97BE-075147CBE769',
244 'msvs_existing_vcproj': 'util/installer_unittests.vcproj', 244 'msvs_existing_vcproj': 'util/installer_util_unittests.vcproj',
245 'dependencies': [ 245 'dependencies': [
246 'installer_util', 246 'installer_util',
247 'installer_util_strings', 247 'installer_util_strings',
248 '../../base/base.gyp:base', 248 '../../base/base.gyp:base',
249 '../../testing/gtest.gyp:gtest', 249 '../../testing/gtest.gyp:gtest',
250 ], 250 ],
251 'include_dirs': [ 251 'include_dirs': [
252 '../..', 252 '../..',
253 ], 253 ],
254 'sources': [ 254 'sources': [
255 'setup/compat_checks_unittest.cc', 255 'setup/compat_checks_unittest.cc',
256 'setup/setup_constants.cc', 256 'setup/setup_constants.cc',
257 'util/copy_tree_work_item_unittest.cc', 257 'util/copy_tree_work_item_unittest.cc',
258 'util/create_dir_work_item_unittest.cc', 258 'util/create_dir_work_item_unittest.cc',
259 'util/create_reg_key_work_item_unittest.cc', 259 'util/create_reg_key_work_item_unittest.cc',
260 'util/delete_reg_value_work_item_unittest.cc', 260 'util/delete_reg_value_work_item_unittest.cc',
261 'util/delete_tree_work_item_unittest.cc', 261 'util/delete_tree_work_item_unittest.cc',
262 'util/google_chrome_distribution_unittest.cc', 262 'util/google_chrome_distribution_unittest.cc',
263 'util/helper_unittest.cc', 263 'util/helper_unittest.cc',
264 'util/installer_unittests.rc', 264 'util/installer_util_unittests.rc',
265 'util/installer_unittests_resource.h', 265 'util/installer_util_unittests_resource.h',
266 'util/move_tree_work_item_unittest.cc', 266 'util/move_tree_work_item_unittest.cc',
267 'util/run_all_unittests.cc', 267 'util/run_all_unittests.cc',
268 'util/set_reg_value_work_item_unittest.cc', 268 'util/set_reg_value_work_item_unittest.cc',
269 'util/work_item_list_unittest.cc', 269 'util/work_item_list_unittest.cc',
270 ], 270 ],
271 }, 271 },
272 { 272 {
273 'target_name': 'installer_util_strings', 273 'target_name': 'installer_util_strings',
274 'type': 'none', 274 'type': 'none',
275 'msvs_guid': '0026A376-C4F1-4575-A1BA-578C69F07013', 275 'msvs_guid': '0026A376-C4F1-4575-A1BA-578C69F07013',
(...skipping 263 matching lines...) Expand 10 before | Expand all | Expand 10 after
539 'variables': { 539 'variables': {
540 'branding_dir': '../app/theme/google_chrome', 540 'branding_dir': '../app/theme/google_chrome',
541 }, 541 },
542 }, { # else branding!="Chrome" 542 }, { # else branding!="Chrome"
543 'variables': { 543 'variables': {
544 'branding_dir': '../app/theme/chromium', 544 'branding_dir': '../app/theme/chromium',
545 }, 545 },
546 }], 546 }],
547 ], 547 ],
548 }, 548 },
549 {
550 'target_name': 'setup_unittests',
551 'type': 'executable',
552 'msvs_guid': 'C0AE4E06-F023-460F-BC14-6302CEAC51F8',
553 'dependencies': [
554 'installer_util',
555 '../../base/base.gyp:base',
556 '../../testing/gtest.gyp:gtest',
557 ],
558 'include_dirs': [
559 '../..',
560 ],
561 'sources': [
562 'setup/run_all_unittests.cc',
563 'setup/setup_util.cc',
564 'setup/setup_util_unittest.cc',
565 ],
566 },
549 ], 567 ],
550 }], 568 }],
551 [ 'branding == "Chrome"', { 569 [ 'branding == "Chrome"', {
552 'variables': { 570 'variables': {
553 'branding_dir': '../app/theme/google_chrome', 571 'branding_dir': '../app/theme/google_chrome',
554 }, 572 },
555 }, { # else branding!="Chrome" 573 }, { # else branding!="Chrome"
556 'variables': { 574 'variables': {
557 'branding_dir': '../app/theme/chromium', 575 'branding_dir': '../app/theme/chromium',
558 }, 576 },
559 }], 577 }],
560 ], 578 ],
561 } 579 }
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