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

Side by Side Diff: components/variations.gypi

Issue 293623003: [Metrics] Move CachingPermutedEntropyProvider into the variations component. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add a newline Created 6 years, 7 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 unified diff | Download patch | Annotate | Revision Log
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/caching_permuted_entropy_provider.cc',
19 'variations/caching_permuted_entropy_provider.h',
18 'variations/entropy_provider.cc', 20 'variations/entropy_provider.cc',
19 'variations/entropy_provider.h', 21 'variations/entropy_provider.h',
20 'variations/metrics_util.cc', 22 'variations/metrics_util.cc',
21 'variations/metrics_util.h', 23 'variations/metrics_util.h',
24 'variations/pref_names.cc',
25 'variations/pref_names.h',
22 'variations/processed_study.cc', 26 'variations/processed_study.cc',
23 'variations/processed_study.h', 27 'variations/processed_study.h',
28 'variations/proto/permuted_entropy_cache.proto',
29 'variations/proto/study.proto',
24 'variations/proto/variations_seed.proto', 30 'variations/proto/variations_seed.proto',
25 'variations/proto/study.proto',
26 'variations/study_filtering.cc', 31 'variations/study_filtering.cc',
27 'variations/study_filtering.h', 32 'variations/study_filtering.h',
28 'variations/variations_associated_data.cc', 33 'variations/variations_associated_data.cc',
29 'variations/variations_associated_data.h', 34 'variations/variations_associated_data.h',
30 'variations/variations_seed_processor.cc', 35 'variations/variations_seed_processor.cc',
31 'variations/variations_seed_processor.h', 36 'variations/variations_seed_processor.h',
32 'variations/variations_seed_simulator.cc', 37 'variations/variations_seed_simulator.cc',
33 'variations/variations_seed_simulator.h', 38 'variations/variations_seed_simulator.h',
34 ], 39 ],
35 'variables': { 40 'variables': {
36 'proto_in_dir': 'variations/proto', 41 'proto_in_dir': 'variations/proto',
37 'proto_out_dir': 'components/variations/proto', 42 'proto_out_dir': 'components/variations/proto',
38 }, 43 },
39 'includes': [ '../build/protoc.gypi' ] 44 'includes': [ '../build/protoc.gypi' ]
40 }, 45 },
41 ], 46 ],
42 } 47 }
OLDNEW
« no previous file with comments | « components/components_tests.gyp ('k') | components/variations/caching_permuted_entropy_provider.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698