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

Unified Diff: components/variations.gypi

Issue 490733002: Remove dependency of common on variations browser code (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: comment Created 6 years, 4 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/metrics.gypi ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/variations.gypi
diff --git a/components/variations.gypi b/components/variations.gypi
index c3589aea4ba12150939c4324d7cb59f6bbdf4d33..5d20b5bf2acc21d5c6cab2d645923acbdb762822 100644
--- a/components/variations.gypi
+++ b/components/variations.gypi
@@ -5,8 +5,8 @@
{
'targets': [
{
- # GN version: //components/variations
- 'target_name': 'variations',
+ # GN version: //components/variations_common
+ 'target_name': 'variations_common',
Alexei Svitkine (slow) 2014/08/21 21:07:10 I'd keep this as 'variations'.
scottmg 2014/08/21 21:21:48 Done. (Was based on many other components (see ch
'type': 'static_library',
'include_dirs': [
'..',
@@ -14,7 +14,6 @@
'dependencies': [
'../base/base.gyp:base',
Alexei Svitkine (slow) 2014/08/21 21:07:10 Would you mind adding the following comment at the
scottmg 2014/08/21 21:21:48 Done.
'../third_party/mt19937ar/mt19937ar.gyp:mt19937ar',
- 'components.gyp:google_core_browser',
],
'sources': [
'variations/active_field_trials.cc',
@@ -41,8 +40,6 @@
'variations/study_filtering.h',
'variations/variations_associated_data.cc',
'variations/variations_associated_data.h',
- 'variations/variations_http_header_provider.cc',
- 'variations/variations_http_header_provider.h',
'variations/variations_seed_processor.cc',
'variations/variations_seed_processor.h',
'variations/variations_seed_simulator.cc',
@@ -61,6 +58,24 @@
}],
],
},
+ {
+ # GN version: //components/variations
+ 'target_name': 'variations',
Alexei Svitkine (slow) 2014/08/21 21:07:10 I'd name this variations_http_provider, since that
scottmg 2014/08/21 21:21:48 Done.
+ 'type': 'static_library',
+ 'include_dirs': [
+ '..',
+ ],
+ 'dependencies': [
+ '../base/base.gyp:base',
+ '../third_party/mt19937ar/mt19937ar.gyp:mt19937ar',
Alexei Svitkine (slow) 2014/08/21 21:07:10 I don't think this dependency is needed.
scottmg 2014/08/21 21:21:48 Done.
+ 'components.gyp:google_core_browser',
+ 'variations_common',
+ ],
+ 'sources': [
+ 'variations/variations_http_header_provider.cc',
+ 'variations/variations_http_header_provider.h',
+ ],
+ },
],
'conditions': [
['OS=="android"', {
« no previous file with comments | « components/metrics.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698