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

Side by Side Diff: chrome/chrome.gyp

Issue 345036: Rewrite of chrome.exe startup code... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 1 month 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/browser/google_update.cc ('k') | no next file » | 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) 2009 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2009 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 'chromium_code': 1, 7 'chromium_code': 1,
8 8
9 'variables': { 9 'variables': {
10 'version_py_path': 'tools/build/version.py', 10 'version_py_path': 'tools/build/version.py',
(...skipping 3340 matching lines...) Expand 10 before | Expand all | Expand 10 after
3351 'sources': [ 3351 'sources': [
3352 # All .cc, .h, .m, and .mm files under app except for tests. 3352 # All .cc, .h, .m, and .mm files under app except for tests.
3353 'app/breakpad_win.cc', 3353 'app/breakpad_win.cc',
3354 'app/breakpad_win.h', 3354 'app/breakpad_win.h',
3355 'app/chrome_exe_main.cc', 3355 'app/chrome_exe_main.cc',
3356 'app/chrome_exe_main.mm', 3356 'app/chrome_exe_main.mm',
3357 'app/chrome_exe_main_gtk.cc', 3357 'app/chrome_exe_main_gtk.cc',
3358 'app/chrome_exe_resource.h', 3358 'app/chrome_exe_resource.h',
3359 'app/client_util.cc', 3359 'app/client_util.cc',
3360 'app/client_util.h', 3360 'app/client_util.h',
3361 'app/google_update_client.cc',
3362 'app/google_update_client.h',
3363 'app/hard_error_handler_win.cc', 3361 'app/hard_error_handler_win.cc',
3364 'app/hard_error_handler_win.h', 3362 'app/hard_error_handler_win.h',
3365 'app/scoped_ole_initializer.h', 3363 'app/scoped_ole_initializer.h',
3366 ], 3364 ],
3367 'mac_bundle_resources': [ 3365 'mac_bundle_resources': [
3368 'app/app-Info.plist', 3366 'app/app-Info.plist',
3369 ], 3367 ],
3370 # TODO(mark): Come up with a fancier way to do this. It should only 3368 # TODO(mark): Come up with a fancier way to do this. It should only
3371 # be necessary to list app-Info.plist once, not the three times it is 3369 # be necessary to list app-Info.plist once, not the three times it is
3372 # listed here. 3370 # listed here.
(...skipping 419 matching lines...) Expand 10 before | Expand all | Expand 10 after
3792 '<(PRODUCT_DIR)/First Run', 3790 '<(PRODUCT_DIR)/First Run',
3793 ], 3791 ],
3794 'action': ['cp', '-f', '<@(_inputs)', '<@(_outputs)'], 3792 'action': ['cp', '-f', '<@(_inputs)', '<@(_outputs)'],
3795 'message': 'Copy first run complete sentinel file', 3793 'message': 'Copy first run complete sentinel file',
3796 }, 3794 },
3797 ], 3795 ],
3798 }, { # 'OS!="win" 3796 }, { # 'OS!="win"
3799 'sources!': [ 3797 'sources!': [
3800 'app/chrome_exe_main.cc', 3798 'app/chrome_exe_main.cc',
3801 'app/client_util.cc', 3799 'app/client_util.cc',
3802 'app/google_update_client.cc',
3803 ] 3800 ]
3804 }], 3801 }],
3805 ['OS=="linux" or OS=="freebsd"', { 3802 ['OS=="linux" or OS=="freebsd"', {
3806 'variables': { 3803 'variables': {
3807 'repack_path': '../tools/data_pack/repack.py', 3804 'repack_path': '../tools/data_pack/repack.py',
3808 }, 3805 },
3809 'actions': [ 3806 'actions': [
3810 # TODO(mark): These actions are duplicated for the Mac in the 3807 # TODO(mark): These actions are duplicated for the Mac in the
3811 # chrome_dll target. Can they be unified? 3808 # chrome_dll target. Can they be unified?
3812 { 3809 {
(...skipping 3100 matching lines...) Expand 10 before | Expand all | Expand 10 after
6913 ], # targets when browser_sync==1 6910 ], # targets when browser_sync==1
6914 }], 6911 }],
6915 ], # 'conditions' 6912 ], # 'conditions'
6916 } 6913 }
6917 6914
6918 # Local Variables: 6915 # Local Variables:
6919 # tab-width:2 6916 # tab-width:2
6920 # indent-tabs-mode:nil 6917 # indent-tabs-mode:nil
6921 # End: 6918 # End:
6922 # vim: set expandtab tabstop=2 shiftwidth=2: 6919 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « chrome/browser/google_update.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698