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

Side by Side Diff: apps/apps.gypi

Issue 12674028: Report text output and exit code for command-line operations. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Line endings. Created 7 years, 9 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
OLDNEW
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 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 'target_name': 'apps', 8 'target_name': 'apps',
9 'type': 'static_library', 9 'type': 'static_library',
10 'variables': { 'enable_wexit_time_destructors': 1, }, 10 'variables': { 'enable_wexit_time_destructors': 1, },
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 ], 68 ],
69 'direct_dependent_settings': { 69 'direct_dependent_settings': {
70 'include_dirs': [ 70 'include_dirs': [
71 '..', 71 '..',
72 ], 72 ],
73 }, 73 },
74 'dependencies': [ 74 'dependencies': [
75 '../base/base.gyp:base', 75 '../base/base.gyp:base',
76 '../chrome/chrome.gyp:chrome_version_resources', 76 '../chrome/chrome.gyp:chrome_version_resources',
77 '../chrome/chrome.gyp:launcher_support', 77 '../chrome/chrome.gyp:launcher_support',
78 '../chrome/common_constants.gyp:common_constants',
78 '../google_update/google_update.gyp:google_update', 79 '../google_update/google_update.gyp:google_update',
79 ], 80 ],
80 'sources': [ 81 'sources': [
81 'app_host/app_host.rc', 82 'app_host/app_host.rc',
82 'app_host/app_host_main.cc', 83 'app_host/app_host_main.cc',
83 'app_host/app_host_resource.h', 84 'app_host/app_host_resource.h',
84 'app_host/binaries_installer.cc', 85 'app_host/binaries_installer.cc',
85 'app_host/binaries_installer.h', 86 'app_host/binaries_installer.h',
87 'app_host/operation_launcher.cc',
88 'app_host/operation_launcher.h',
86 'app_host/update.cc', 89 'app_host/update.cc',
87 'app_host/update.h', 90 'app_host/update.h',
88 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/app_host_exe_version.rc ', 91 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/app_host_exe_version.rc ',
89 ], 92 ],
90 'msvs_settings': { 93 'msvs_settings': {
91 'VCLinkerTool': { 94 'VCLinkerTool': {
92 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS 95 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS
93 }, 96 },
94 }, 97 },
95 }, 98 },
99 {
100 'target_name': 'test_operation',
101 'type': 'executable',
102 'include_dirs': [
103 '..',
104 ],
105 'dependencies': [
106 '../base/base.gyp:base',
107 '../chrome/chrome.gyp:browser',
108 '../chrome/common_constants.gyp:common_constants',
109 ],
110 'sources': [
111 'app_host/test_operation.cc',
112 ],
113 'msvs_settings': {
114 'VCLinkerTool': {
115 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS
gab 2013/03/28 03:06:06 Curious: what does this do?
erikwright (departed) 2013/04/18 17:43:04 Prevents a console window from being displayed by
116 },
117 },
118 },
119
96 ], 120 ],
97 }, 121 },
98 ], # 'OS=="win"' 122 ], # 'OS=="win"'
99 ], # 'conditions' 123 ], # 'conditions'
100 } 124 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698