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

Unified Diff: chrome/chrome_installer.gypi

Issue 8508060: Add functionality to the GCAPI to detect when Chrome was last run. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/installer/gcapi/gcapi.h » ('j') | chrome/installer/gcapi/gcapi_last_run_test.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/chrome_installer.gypi
===================================================================
--- chrome/chrome_installer.gypi (revision 108839)
+++ chrome/chrome_installer.gypi (working copy)
@@ -14,6 +14,8 @@
'target_name': 'gcapi_dll',
'type': 'loadable_module',
'dependencies': [
+ 'installer_util',
+ '<(DEPTH)/base/base.gyp:base',
'<(DEPTH)/google_update/google_update.gyp:google_update',
],
'include_dirs': [
@@ -21,6 +23,7 @@
],
'sources': [
'installer/gcapi/gcapi.cc',
+ 'installer/gcapi/gcapi.def',
'installer/gcapi/gcapi.h',
],
},
@@ -28,6 +31,8 @@
'target_name': 'gcapi_lib',
'type': 'static_library',
'dependencies': [
+ 'installer_util',
+ '<(DEPTH)/base/base.gyp:base',
'<(DEPTH)/google_update/google_update.gyp:google_update',
],
'include_dirs': [
@@ -41,14 +46,20 @@
{
'target_name': 'gcapi_test',
'type': 'executable',
- 'dependencies': [
+ 'dependencies': [
+ 'common',
'gcapi_dll',
'gcapi_lib',
+ 'installer_util',
+ '<(DEPTH)/base/base.gyp:base',
+ '<(DEPTH)/base/base.gyp:test_support_base',
+ '<(DEPTH)/testing/gtest.gyp:gtest',
],
'include_dirs': [
'<(DEPTH)',
],
'sources': [
+ 'installer/gcapi/gcapi_last_run_test.cc',
'installer/gcapi/gcapi_test.cc',
'installer/gcapi/gcapi_test.rc',
'installer/gcapi/resource.h',
« no previous file with comments | « no previous file | chrome/installer/gcapi/gcapi.h » ('j') | chrome/installer/gcapi/gcapi_last_run_test.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698