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

Unified Diff: components/timers.gypi

Issue 641943002: components: Introduce AlarmTimer class and use it for GCM heartbeat (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix build error in mcs_probe Created 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/gcm_driver/gcm_client_impl_unittest.cc ('k') | components/timers/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/timers.gypi
diff --git a/components/language_usage_metrics.gypi b/components/timers.gypi
similarity index 65%
copy from components/language_usage_metrics.gypi
copy to components/timers.gypi
index e150a1bba9e6673d38945da908c9edd17bea6fcc..4202b96fc34fca18dba2395029d1d10ea3b2dece 100644
--- a/components/language_usage_metrics.gypi
+++ b/components/timers.gypi
@@ -5,18 +5,21 @@
{
'targets': [
{
- 'target_name': 'language_usage_metrics',
+ # GN version: //components/timers
+ 'target_name': 'timers',
'type': 'static_library',
- 'dependencies': [
- '../base/base.gyp:base',
- ],
'include_dirs': [
'..',
],
+ 'dependencies': [
+ '../base/base.gyp:base',
+ ],
'sources': [
- 'language_usage_metrics/language_usage_metrics.cc',
- 'language_usage_metrics/language_usage_metrics.h',
+ 'timers/alarm_timer.cc',
+ 'timers/alarm_timer.h',
+ 'timers/rtc_alarm.cc',
+ 'timers/rtc_alarm.h',
],
},
],
-}
+}
« no previous file with comments | « components/gcm_driver/gcm_client_impl_unittest.cc ('k') | components/timers/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698