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

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: Removing few commented lines. Created 5 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 unified diff | Download patch
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 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 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4
5 { 4 {
6 'targets': [ 5 'targets': [
7 { 6 {
8 'target_name': 'browsing_data', 7 'target_name': 'data_use_measurement',
sclittle 2015/08/21 23:55:33 separate the core/ and content/ stuff into differe
amohammadkhan 2015/08/26 22:28:40 Done.
9 'type': 'static_library', 8 'type': 'static_library',
10 'dependencies': [ 9 'dependencies': [
11 '../base/base.gyp:base', 10 '../base/base.gyp:base',
12 '../content/content.gyp:content_browser', 11 '../content/content.gyp:content_browser',
13 '../net/net.gyp:net', 12 '../net/net.gyp:net',
14 ], 13 ],
15 'include_dirs': [
16 '..',
17 ],
18 'sources': [ 14 'sources': [
19 # Note: sources list duplicated in GN build. 15 'data_use_measurement/content/data_use_user_data.cc',
20 'browsing_data/storage_partition_http_cache_data_remover.cc', 16 'data_use_measurement/content/data_use_user_data.h',
21 'browsing_data/storage_partition_http_cache_data_remover.h', 17 'data_use_measurement/core/data_use_measurement.cc',
22 ], 18 'data_use_measurement/core/data_use_measurement.h',
23 }, 19 ]
24 ], 20 }
21 ]
25 } 22 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698