OLD | NEW |
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/active_field_trials.cc', |
| 19 'variations/active_field_trials.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', |
22 'variations/processed_study.cc', | 24 'variations/processed_study.cc', |
23 'variations/processed_study.h', | 25 'variations/processed_study.h', |
24 'variations/proto/variations_seed.proto', | 26 'variations/proto/variations_seed.proto', |
25 'variations/proto/study.proto', | 27 'variations/proto/study.proto', |
26 'variations/study_filtering.cc', | 28 'variations/study_filtering.cc', |
27 'variations/study_filtering.h', | 29 'variations/study_filtering.h', |
28 'variations/variations_associated_data.cc', | 30 'variations/variations_associated_data.cc', |
29 'variations/variations_associated_data.h', | 31 'variations/variations_associated_data.h', |
30 'variations/variations_seed_processor.cc', | 32 'variations/variations_seed_processor.cc', |
31 'variations/variations_seed_processor.h', | 33 'variations/variations_seed_processor.h', |
32 'variations/variations_seed_simulator.cc', | 34 'variations/variations_seed_simulator.cc', |
33 'variations/variations_seed_simulator.h', | 35 'variations/variations_seed_simulator.h', |
34 ], | 36 ], |
35 'variables': { | 37 'variables': { |
36 'proto_in_dir': 'variations/proto', | 38 'proto_in_dir': 'variations/proto', |
37 'proto_out_dir': 'components/variations/proto', | 39 'proto_out_dir': 'components/variations/proto', |
38 }, | 40 }, |
39 'includes': [ '../build/protoc.gypi' ] | 41 'includes': [ '../build/protoc.gypi' ] |
40 }, | 42 }, |
41 ], | 43 ], |
42 } | 44 } |
OLD | NEW |