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/caching_permuted_entropy_provider.cc', | 20 'variations/caching_permuted_entropy_provider.cc', |
19 'variations/caching_permuted_entropy_provider.h', | 21 'variations/caching_permuted_entropy_provider.h', |
20 'variations/entropy_provider.cc', | 22 'variations/entropy_provider.cc', |
21 'variations/entropy_provider.h', | 23 'variations/entropy_provider.h', |
22 'variations/metrics_util.cc', | 24 'variations/metrics_util.cc', |
23 'variations/metrics_util.h', | 25 'variations/metrics_util.h', |
24 'variations/pref_names.cc', | 26 'variations/pref_names.cc', |
25 'variations/pref_names.h', | 27 'variations/pref_names.h', |
26 'variations/processed_study.cc', | 28 'variations/processed_study.cc', |
27 'variations/processed_study.h', | 29 'variations/processed_study.h', |
(...skipping 10 matching lines...) Expand all Loading... |
38 'variations/variations_seed_simulator.h', | 40 'variations/variations_seed_simulator.h', |
39 ], | 41 ], |
40 'variables': { | 42 'variables': { |
41 'proto_in_dir': 'variations/proto', | 43 'proto_in_dir': 'variations/proto', |
42 'proto_out_dir': 'components/variations/proto', | 44 'proto_out_dir': 'components/variations/proto', |
43 }, | 45 }, |
44 'includes': [ '../build/protoc.gypi' ] | 46 'includes': [ '../build/protoc.gypi' ] |
45 }, | 47 }, |
46 ], | 48 ], |
47 } | 49 } |
OLD | NEW |