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

Unified Diff: components/data_use_measurement.gypi

Issue 1279543002: Support needed to measure user and service traffic in Chrome. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@NewHistogram
Patch Set: Addressed comments and rebased. Created 5 years, 3 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.gyp ('k') | components/data_use_measurement/OWNERS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/data_use_measurement.gypi
diff --git a/components/data_use_measurement.gypi b/components/data_use_measurement.gypi
new file mode 100644
index 0000000000000000000000000000000000000000..7f80e4ef87bacb48373009e8951f7e735174054b
--- /dev/null
+++ b/components/data_use_measurement.gypi
@@ -0,0 +1,33 @@
+# Copyright 2015 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': 'data_use_measurement_content',
+ 'type': 'static_library',
+ 'dependencies': [
+ '../base/base.gyp:base',
+ '../content/content.gyp:content_browser',
+ '../net/net.gyp:net',
+ 'data_use_measurement_core',
+ ],
+ 'sources': [
+ 'data_use_measurement/content/data_use_measurement.cc',
+ 'data_use_measurement/content/data_use_measurement.h',
+ ]
+ },
+ {
+ 'target_name': 'data_use_measurement_core',
+ 'type': 'static_library',
+ 'dependencies': [
+ '../base/base.gyp:base',
+ '../net/net.gyp:net',
+ ],
+ 'sources': [
+ 'data_use_measurement/core/data_use_user_data.cc',
+ 'data_use_measurement/core/data_use_user_data.h',
+ ]
+ }
+ ]
+}
« no previous file with comments | « components/components_tests.gyp ('k') | components/data_use_measurement/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698