summaryrefslogtreecommitdiff
path: root/chromium/components/variations.gypi
diff options
context:
space:
mode:
authorAndras Becsi <andras.becsi@digia.com>2013-12-11 21:33:03 +0100
committerAndras Becsi <andras.becsi@digia.com>2013-12-13 12:34:07 +0100
commitf2a33ff9cbc6d19943f1c7fbddd1f23d23975577 (patch)
tree0586a32aa390ade8557dfd6b4897f43a07449578 /chromium/components/variations.gypi
parent5362912cdb5eea702b68ebe23702468d17c3017a (diff)
downloadqtwebengine-chromium-f2a33ff9cbc6d19943f1c7fbddd1f23d23975577.tar.gz
Update Chromium to branch 1650 (31.0.1650.63)
Change-Id: I57d8c832eaec1eb2364e0a8e7352a6dd354db99f Reviewed-by: Jocelyn Turcotte <jocelyn.turcotte@digia.com>
Diffstat (limited to 'chromium/components/variations.gypi')
-rw-r--r--chromium/components/variations.gypi36
1 files changed, 36 insertions, 0 deletions
diff --git a/chromium/components/variations.gypi b/chromium/components/variations.gypi
new file mode 100644
index 00000000000..a5b9c6e6453
--- /dev/null
+++ b/chromium/components/variations.gypi
@@ -0,0 +1,36 @@
+# 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/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' ]
+ },
+ ],
+}