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

Side by Side Diff: chrome/chrome_installer.gypi

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
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 'variables': { 6 'variables': {
7 'lastchange_path': '../build/util/LASTCHANGE', 7 'lastchange_path': '../build/util/LASTCHANGE',
8 # 'branding_dir' is set in the 'conditions' section at the bottom. 8 # 'branding_dir' is set in the 'conditions' section at the bottom.
9 }, 9 },
10 'conditions': [ 10 'conditions': [
(...skipping 12 matching lines...) Expand all
23 'installer/gcapi/gcapi.def', 23 'installer/gcapi/gcapi.def',
24 'installer/gcapi/gcapi_dll.cc', 24 'installer/gcapi/gcapi_dll.cc',
25 ], 25 ],
26 }, 26 },
27 { 27 {
28 'target_name': 'gcapi_lib', 28 'target_name': 'gcapi_lib',
29 'type': 'static_library', 29 'type': 'static_library',
30 'dependencies': [ 30 'dependencies': [
31 'installer_util', 31 'installer_util',
32 '../base/base.gyp:base', 32 '../base/base.gyp:base',
33 '../chrome/chrome.gyp:launcher_support',
33 '../google_update/google_update.gyp:google_update', 34 '../google_update/google_update.gyp:google_update',
34 ], 35 ],
35 'include_dirs': [ 36 'include_dirs': [
36 '..', 37 '..',
37 ], 38 ],
38 'sources': [ 39 'sources': [
39 'installer/gcapi/gcapi.cc', 40 'installer/gcapi/gcapi.cc',
40 'installer/gcapi/gcapi.h', 41 'installer/gcapi/gcapi.h',
41 'installer/gcapi/gcapi_omaha_experiment.cc', 42 'installer/gcapi/gcapi_omaha_experiment.cc',
42 'installer/gcapi/gcapi_omaha_experiment.h', 43 'installer/gcapi/gcapi_omaha_experiment.h',
(...skipping 995 matching lines...) Expand 10 before | Expand all | Expand 10 after
1038 'variables': { 1039 'variables': {
1039 'branding_dir': 'app/theme/google_chrome', 1040 'branding_dir': 'app/theme/google_chrome',
1040 }, 1041 },
1041 }, { # else branding!="Chrome" 1042 }, { # else branding!="Chrome"
1042 'variables': { 1043 'variables': {
1043 'branding_dir': 'app/theme/chromium', 1044 'branding_dir': 'app/theme/chromium',
1044 }, 1045 },
1045 }], 1046 }],
1046 ], 1047 ],
1047 } 1048 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698