blob: a5b9c6e6453a26b70883f67f19b440b203c15f6e [file] [log] [blame]
[email protected]50ae9f12013-08-29 18:03:221# 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
3# found in the LICENSE file.
4
5{
6 'targets': [
7 {
8 'target_name': 'variations',
9 'type': 'static_library',
10 'include_dirs': [
11 '..',
12 ],
13 'dependencies': [
14 '../base/base.gyp:base',
15 '../third_party/mt19937ar/mt19937ar.gyp:mt19937ar',
[email protected]50ae9f12013-08-29 18:03:2216 ],
17 'sources': [
18 'variations/entropy_provider.cc',
19 'variations/entropy_provider.h',
[email protected]10db31252013-09-05 18:10:1220 'variations/proto/variations_seed.proto',
21 'variations/proto/study.proto',
[email protected]50ae9f12013-08-29 18:03:2222 'variations/metrics_util.cc',
23 'variations/metrics_util.h',
24 'variations/variations_associated_data.cc',
25 'variations/variations_associated_data.h',
26 'variations/variations_seed_processor.cc',
27 'variations/variations_seed_processor.h',
28 ],
[email protected]50ae9f12013-08-29 18:03:2229 'variables': {
30 'proto_in_dir': 'variations/proto',
31 'proto_out_dir': 'components/variations/proto',
32 },
33 'includes': [ '../build/protoc.gypi' ]
34 },
35 ],
36}