Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(315)

Unified Diff: components/variations.gypi

Issue 23097007: Create variations target that depends on base. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/components_tests.gypi ('k') | components/variations/OWNERS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/variations.gypi
===================================================================
--- components/variations.gypi (revision 0)
+++ components/variations.gypi (working copy)
@@ -0,0 +1,47 @@
+# 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',
+ 'variations_seed_proto',
+ ],
+ 'sources': [
+ 'variations/entropy_provider.cc',
+ 'variations/entropy_provider.h',
+ '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',
+ ],
+ },
+ {
+ # Protobuf compiler / generator for Chrome Variations seed.
+ 'target_name': 'variations_seed_proto',
+ 'type': 'static_library',
+ 'include_dirs': [
+ '..',
+ ],
+ 'sources': [
+ 'variations/proto/trials_seed.proto',
+ 'variations/proto/study.proto',
+ ],
+ 'variables': {
+ 'proto_in_dir': 'variations/proto',
+ 'proto_out_dir': 'components/variations/proto',
+ },
+ 'includes': [ '../build/protoc.gypi' ]
+ },
+ ],
+}
« no previous file with comments | « components/components_tests.gypi ('k') | components/variations/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698