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

Side by Side Diff: chrome/chrome_exe.gypi

Issue 1387963006: Adding error handlers to setup.exe (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix lint errors/warnings 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 unified diff | Download patch
« no previous file with comments | « chrome/app/client_util.cc ('k') | chrome/installer/setup/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 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'targets': [ 6 'targets': [
7 { 7 {
8 # GN version: //chrome 8 # GN version: //chrome
9 'target_name': 'chrome', 9 'target_name': 'chrome',
10 'type': 'none', 10 'type': 'none',
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 # Name the exe chrome.exe, not chrome_initial.exe. 49 # Name the exe chrome.exe, not chrome_initial.exe.
50 'product_name': 'chrome', 50 'product_name': 'chrome',
51 'mac_bundle': 1, 51 'mac_bundle': 1,
52 'variables': { 52 'variables': {
53 'use_system_xdg_utils%': 0, 53 'use_system_xdg_utils%': 0,
54 'enable_wexit_time_destructors': 1, 54 'enable_wexit_time_destructors': 1,
55 }, 55 },
56 'sources': [ 56 'sources': [
57 # Note that due to InitializeSandboxInfo, this must be directly linked 57 # Note that due to InitializeSandboxInfo, this must be directly linked
58 # into chrome.exe, not into a dependent. 58 # into chrome.exe, not into a dependent.
59 '<(DEPTH)/content/app/startup_helper_win.cc', 59 '<(DEPTH)/content/app/sandbox_helper_win.cc',
60 '<(DEPTH)/content/public/common/content_switches.cc', 60 '<(DEPTH)/content/public/common/content_switches.cc',
61 'app/chrome_exe_load_config_win.cc', 61 'app/chrome_exe_load_config_win.cc',
62 'app/chrome_exe_main_aura.cc', 62 'app/chrome_exe_main_aura.cc',
63 'app/chrome_exe_main_mac.cc', 63 'app/chrome_exe_main_mac.cc',
64 'app/chrome_exe_main_win.cc', 64 'app/chrome_exe_main_win.cc',
65 'app/chrome_exe_resource.h', 65 'app/chrome_exe_resource.h',
66 'app/chrome_watcher_client_win.cc', 66 'app/chrome_watcher_client_win.cc',
67 'app/chrome_watcher_client_win.h', 67 'app/chrome_watcher_client_win.h',
68 'app/chrome_watcher_command_line_win.cc', 68 'app/chrome_watcher_command_line_win.cc',
69 'app/chrome_watcher_command_line_win.h', 69 'app/chrome_watcher_command_line_win.h',
(...skipping 454 matching lines...) Expand 10 before | Expand all | Expand 10 after
524 }, 524 },
525 ], 525 ],
526 'conditions': [ 526 'conditions': [
527 ['disable_nacl!=1 and target_arch=="ia32"', { 527 ['disable_nacl!=1 and target_arch=="ia32"', {
528 'targets': [ 528 'targets': [
529 { 529 {
530 'target_name': 'chrome_nacl_win64', 530 'target_name': 'chrome_nacl_win64',
531 'type': 'executable', 531 'type': 'executable',
532 'product_name': 'nacl64', 532 'product_name': 'nacl64',
533 'sources': [ 533 'sources': [
534 '../content/app/startup_helper_win.cc', 534 '../content/app/sandbox_helper_win.cc',
535 '../content/common/sandbox_init_win.cc', 535 '../content/common/sandbox_init_win.cc',
536 '../content/common/sandbox_win.cc', 536 '../content/common/sandbox_win.cc',
537 '../content/public/common/content_switches.cc', 537 '../content/public/common/content_switches.cc',
538 '../content/public/common/sandboxed_process_launcher_delegate.cc ', 538 '../content/public/common/sandboxed_process_launcher_delegate.cc ',
539 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/nacl64_exe_version.rc ', 539 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/nacl64_exe_version.rc ',
540 'app/chrome_crash_reporter_client.cc', 540 'app/chrome_crash_reporter_client.cc',
541 'common/crash_keys.cc', 541 'common/crash_keys.cc',
542 'nacl/nacl_exe_win_64.cc', 542 'nacl/nacl_exe_win_64.cc',
543 ], 543 ],
544 'dependencies': [ 544 'dependencies': [
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
617 'dependencies': [ 617 'dependencies': [
618 'chrome_nacl_win64', 618 'chrome_nacl_win64',
619 ], 619 ],
620 }], 620 }],
621 ], 621 ],
622 }, 622 },
623 ], 623 ],
624 }], 624 }],
625 ], 625 ],
626 } 626 }
OLDNEW
« no previous file with comments | « chrome/app/client_util.cc ('k') | chrome/installer/setup/setup_main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698