summaryrefslogtreecommitdiff
path: root/chromium/components/variations.gypi
blob: 4a69d65ed6141c78cc82e551322656dc764646a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# Copyright (c) 2012 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

{
  'targets': [
    {
      'target_name': 'variations',
      'type': 'static_library',
      'include_dirs': [
        '..',
      ],
      'dependencies': [
        '../base/base.gyp:base',
        '../third_party/mt19937ar/mt19937ar.gyp:mt19937ar',
      ],
      'sources': [
        'variations/entropy_provider.cc',
        'variations/entropy_provider.h',
        'variations/processed_study.cc',
        'variations/processed_study.h',
        'variations/proto/variations_seed.proto',
        'variations/proto/study.proto',
        'variations/metrics_util.cc',
        'variations/metrics_util.h',
        'variations/variations_associated_data.cc',
        'variations/variations_associated_data.h',
        'variations/variations_seed_processor.cc',
        'variations/variations_seed_processor.h',
      ],
      'variables': {
        'proto_in_dir': 'variations/proto',
        'proto_out_dir': 'components/variations/proto',
      },
      'includes': [ '../build/protoc.gypi' ]
    },
  ],
}