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

Side by Side Diff: components/variations.gypi

Issue 59103009: Refactor VariationsSeedProcessor to add ProcessedStudy struct. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | components/variations/processed_study.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'variations', 8 'target_name': 'variations',
9 'type': 'static_library', 9 'type': 'static_library',
10 'include_dirs': [ 10 'include_dirs': [
11 '..', 11 '..',
12 ], 12 ],
13 'dependencies': [ 13 'dependencies': [
14 '../base/base.gyp:base', 14 '../base/base.gyp:base',
15 '../third_party/mt19937ar/mt19937ar.gyp:mt19937ar', 15 '../third_party/mt19937ar/mt19937ar.gyp:mt19937ar',
16 ], 16 ],
17 'sources': [ 17 'sources': [
18 'variations/entropy_provider.cc', 18 'variations/entropy_provider.cc',
19 'variations/entropy_provider.h', 19 'variations/entropy_provider.h',
20 'variations/processed_study.cc',
21 'variations/processed_study.h',
20 'variations/proto/variations_seed.proto', 22 'variations/proto/variations_seed.proto',
21 'variations/proto/study.proto', 23 'variations/proto/study.proto',
22 'variations/metrics_util.cc', 24 'variations/metrics_util.cc',
23 'variations/metrics_util.h', 25 'variations/metrics_util.h',
24 'variations/variations_associated_data.cc', 26 'variations/variations_associated_data.cc',
25 'variations/variations_associated_data.h', 27 'variations/variations_associated_data.h',
26 'variations/variations_seed_processor.cc', 28 'variations/variations_seed_processor.cc',
27 'variations/variations_seed_processor.h', 29 'variations/variations_seed_processor.h',
28 ], 30 ],
29 'variables': { 31 'variables': {
30 'proto_in_dir': 'variations/proto', 32 'proto_in_dir': 'variations/proto',
31 'proto_out_dir': 'components/variations/proto', 33 'proto_out_dir': 'components/variations/proto',
32 }, 34 },
33 'includes': [ '../build/protoc.gypi' ] 35 'includes': [ '../build/protoc.gypi' ]
34 }, 36 },
35 ], 37 ],
36 } 38 }
OLDNEW
« no previous file with comments | « no previous file | components/variations/processed_study.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698