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

Unified Diff: chrome/chrome_browser.gypi

Issue 10343007: Retrieving Chrome Variations seed from server and storing in local prefs. Loading seed data from lo… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 8 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
Index: chrome/chrome_browser.gypi
diff --git a/chrome/chrome_browser.gypi b/chrome/chrome_browser.gypi
index ed52679f8cf9d06a6e602f81bfd436221f93c33e..223d9bd1913c0350ab0eeabbc7e9e3ef7caf2442 100644
--- a/chrome/chrome_browser.gypi
+++ b/chrome/chrome_browser.gypi
@@ -30,6 +30,7 @@
'syncapi_service',
'feedback_proto',
'gdata_proto',
+ 'variations_seed_proto',
'../build/temp_gyp/googleurl.gyp:googleurl',
'../content/content.gyp:content_browser',
'../crypto/crypto.gyp:crypto',
@@ -1347,6 +1348,8 @@
'browser/metrics/tracking_synchronizer.cc',
'browser/metrics/tracking_synchronizer.h',
'browser/metrics/tracking_synchronizer_observer.h',
+ 'browser/metrics/variations_service.cc',
+ 'browser/metrics/variations_service.h',
'browser/native_window_notification_source.h',
'browser/net/browser_url_util.cc',
'browser/net/browser_url_util.h',
@@ -5250,5 +5253,19 @@
},
'includes': [ '../build/protoc.gypi' ]
},
+ {
+ # Protobuf compiler / generator for Chrome Variations seed.
+ 'target_name': 'variations_seed_proto',
+ 'type': 'static_library',
+ 'sources': [
+ 'browser/metrics/proto/trials_seed.proto',
+ 'browser/metrics/proto/study.proto',
+ ],
+ 'variables': {
+ 'proto_in_dir': 'browser/metrics/proto',
+ 'proto_out_dir': 'chrome/browser/metrics/proto',
+ },
+ 'includes': [ '../build/protoc.gypi' ]
+ },
],
}

Powered by Google App Engine
This is Rietveld 408576698