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

Side by Side 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 unified diff | Download patch
« no previous file with comments | « components/components_tests.gyp ('k') | components/data_use_measurement/OWNERS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4 {
5 'targets': [
6 {
7 'target_name': 'data_use_measurement_content',
8 'type': 'static_library',
9 'dependencies': [
10 '../base/base.gyp:base',
11 '../content/content.gyp:content_browser',
12 '../net/net.gyp:net',
13 'data_use_measurement_core',
14 ],
15 'sources': [
16 'data_use_measurement/content/data_use_measurement.cc',
17 'data_use_measurement/content/data_use_measurement.h',
18 ]
19 },
20 {
21 'target_name': 'data_use_measurement_core',
22 'type': 'static_library',
23 'dependencies': [
24 '../base/base.gyp:base',
25 '../net/net.gyp:net',
26 ],
27 'sources': [
28 'data_use_measurement/core/data_use_user_data.cc',
29 'data_use_measurement/core/data_use_user_data.h',
30 ]
31 }
32 ]
33 }
OLDNEW
« 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