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

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: Completing transition to a separate component. 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.
sclittle 2015/08/26 23:11:26 Also, you'll want to add an OWNERS file in the com
amohammadkhan 2015/08/29 01:00:59 Done.
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',
sclittle 2015/08/26 23:08:29 You also need a dependency on data_use_measurement
amohammadkhan 2015/08/29 01:00:59 Done.
13 ],
14 'sources': [
15 'data_use_measurement/content/data_use_measurement.cc',
16 'data_use_measurement/content/data_use_measurement.h',
17 ]
18 },
19 {
20 'target_name': 'data_use_measurement_core',
21 'type': 'static_library',
22 'dependencies': [
23 '../base/base.gyp:base',
24 ],
25 'sources': [
26 'data_use_measurement/core/data_use_user_data.cc',
27 'data_use_measurement/core/data_use_user_data.h',
28 ]
29 }
30 ]
31 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698