Chromium Code Reviews| Index: components/rappor.gypi |
| diff --git a/components/rappor.gypi b/components/rappor.gypi |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..fb30338c3916f19f43689953fee61e0fe0b80fd3 |
| --- /dev/null |
| +++ b/components/rappor.gypi |
| @@ -0,0 +1,42 @@ |
| +# Copyright (c) 2013 The Chromium Authors. All rights reserved. |
|
Ilya Sherman
2014/01/10 11:00:32
nit: 2014, and no "(c)"
Steven Holte
2014/01/14 00:47:54
Done.
|
| +# Use of this source code is governed by a BSD-style license that can be |
| +# found in the LICENSE file. |
| + |
| +{ |
| + 'targets': [ |
| + { |
| + 'target_name': 'rappor', |
| + 'type': 'static_library', |
| + 'include_dirs': [ |
| + '..', |
| + ], |
| + 'dependencies': [ |
| + '../base/base.gyp:base', |
| + '../crypto/crypto.gyp:crypto', |
| + '../net/net.gyp:net', |
| + '../third_party/smhasher/smhasher.gyp:murmurhash3', |
| + ], |
| + 'sources': [ |
| + 'rappor/bloom_filter.cc', |
| + 'rappor/bloom_filter.h', |
| + 'rappor/byte_vector_utils.cc', |
| + 'rappor/byte_vector_utils.h', |
| + 'rappor/log_uploader.cc', |
| + 'rappor/log_uploader.h', |
| + 'rappor/proto/rappor_metric.proto', |
| + 'rappor/rappor_metric.cc', |
| + 'rappor/rappor_metric.h', |
| + 'rappor/rappor_parameters.h', |
| + 'rappor/rappor_pref_names.cc', |
| + 'rappor/rappor_pref_names.h', |
| + 'rappor/rappor_service.cc', |
| + 'rappor/rappor_service.h', |
| + ], |
| + 'variables': { |
| + 'proto_in_dir': 'rappor/proto', |
| + 'proto_out_dir': 'components/rappor/proto', |
| + }, |
| + 'includes': [ '../build/protoc.gypi' ], |
| + }, |
| + ], |
| +} |