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

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: 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
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 ],
26 'sources': [
27 'data_use_measurement/core/data_use_user_data.cc',
28 'data_use_measurement/core/data_use_user_data.h',
29 ]
30 }
31 ]
32 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698