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

Side by Side Diff: components/data_use_measurement/BUILD.gn

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: Adding sclittle to OWNERs and little fix in ChromeNetworkDelegate test. 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 2014 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 source_set("data_use_measurement_content") {
blundell 2015/08/31 09:15:40 It's preferred in GN to just put a BUILD.gn file i
amohammadkhan 2015/09/01 04:52:48 Done.
6 sources = [
7 "content/data_use_measurement.cc",
8 "content/data_use_measurement.h",
9 ]
10 deps = [
11 ":data_use_measurement_core",
12 "//content/public/browser",
13 "//net/base",
blundell 2015/08/31 09:15:40 the //net deps here don't seem to exactly match th
amohammadkhan 2015/09/01 04:52:48 Done.
14 "//net/url_request",
15 ]
16 }
17
18 source_set("data_use_measurement_core") {
19 sources = [
20 "core/data_use_user_data.cc",
21 "core/data_use_user_data.h",
22 ]
23 deps = [
24 "//net/base",
blundell 2015/08/31 09:15:40 the deps here don't match the ones in GYP.
amohammadkhan 2015/09/01 04:52:48 Done.
25 ]
26 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698