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

Side by Side Diff: chrome/chrome.gyp

Issue 10546149: Factor out logic to find chrome.exe from Omaha client state. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/chrome_installer.gypi » ('j') | chrome/installer/gcapi/gcapi.cc » ('J')
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 'variables': { 5 'variables': {
6 'chromium_code': 1, 6 'chromium_code': 1,
7 7
8 'variables': { 8 'variables': {
9 'version_py_path': 'tools/build/version.py', 9 'version_py_path': 'tools/build/version.py',
10 'version_path': 'VERSION', 10 'version_path': 'VERSION',
(...skipping 1040 matching lines...) Expand 10 before | Expand all | Expand 10 after
1051 'dependencies': [ 1051 'dependencies': [
1052 '../base/base.gyp:base', 1052 '../base/base.gyp:base',
1053 'safe_browsing_proto', 1053 'safe_browsing_proto',
1054 ], 1054 ],
1055 'sources': [ 1055 'sources': [
1056 'browser/safe_browsing/signature_util.h', 1056 'browser/safe_browsing/signature_util.h',
1057 'browser/safe_browsing/signature_util_win.cc', 1057 'browser/safe_browsing/signature_util_win.cc',
1058 'tools/safe_browsing/sb_sigutil.cc', 1058 'tools/safe_browsing/sb_sigutil.cc',
1059 ], 1059 ],
1060 }, 1060 },
1061 {
1062 'target_name': 'launcher_support',
1063 'type': 'static_library',
1064 'include_dirs': [
1065 '..',
1066 ],
1067 'direct_dependent_settings': {
1068 'include_dirs': [
1069 '..',
1070 ],
1071 },
1072 'dependencies': [
1073 '<(DEPTH)/base/base.gyp:base',
1074 ],
1075 'sources': [
1076 'tools/launcher_support/chrome_launcher_support.cc',
grt (UTC plus 2) 2012/06/13 18:00:10 tools/ doesn't feel like the right place for this
erikwright (departed) 2012/06/13 19:43:43 Done.
1077 'tools/launcher_support/chrome_launcher_support.h',
1078 ],
1079 },
1061 ]}, # 'targets' 1080 ]}, # 'targets'
1062 ], # OS=="win" 1081 ], # OS=="win"
1063 ], # 'conditions' 1082 ], # 'conditions'
1064 } 1083 }
OLDNEW
« no previous file with comments | « no previous file | chrome/chrome_installer.gypi » ('j') | chrome/installer/gcapi/gcapi.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698