Chromium Code Reviews| Index: components/variations.gypi |
| diff --git a/components/variations.gypi b/components/variations.gypi |
| index 1cf4882e45ec833cfa297a398c506dce2bd631e9..71df2aad029416ea7fbddbc52b5454cfe2664b8f 100644 |
| --- a/components/variations.gypi |
| +++ b/components/variations.gypi |
| @@ -13,16 +13,19 @@ |
| 'dependencies': [ |
| '../base/base.gyp:base', |
| '../third_party/mt19937ar/mt19937ar.gyp:mt19937ar', |
| + 'variations_proto', |
| ], |
| 'sources': [ |
| + 'variations/caching_permuted_entropy_provider.cc', |
| + 'variations/caching_permuted_entropy_provider.h', |
| 'variations/entropy_provider.cc', |
| 'variations/entropy_provider.h', |
| 'variations/metrics_util.cc', |
| 'variations/metrics_util.h', |
| + 'variations/pref_names.cc', |
| + 'variations/pref_names.h', |
| 'variations/processed_study.cc', |
| 'variations/processed_study.h', |
| - 'variations/proto/variations_seed.proto', |
| - 'variations/proto/study.proto', |
| 'variations/study_filtering.cc', |
| 'variations/study_filtering.h', |
| 'variations/variations_associated_data.cc', |
| @@ -32,6 +35,15 @@ |
| 'variations/variations_seed_simulator.cc', |
| 'variations/variations_seed_simulator.h', |
| ], |
| + }, |
| + { |
| + 'target_name': 'variations_proto', |
|
Alexei Svitkine (slow)
2014/05/19 11:23:03
I think it's OK to keep them in the same target (m
blundell
2014/05/19 11:25:25
I don't think they can be in the same target, as t
blundell
2014/05/19 11:26:56
Good point. We can do an export_dependent_settings
Ilya Sherman
2014/05/19 11:41:22
Restored the original .gyp structure.
|
| + 'type': 'static_library', |
| + 'sources': [ |
| + 'variations/proto/permuted_entropy_cache.proto', |
| + 'variations/proto/study.proto', |
| + 'variations/proto/variations_seed.proto', |
| + ], |
| 'variables': { |
| 'proto_in_dir': 'variations/proto', |
| 'proto_out_dir': 'components/variations/proto', |