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

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

Issue 2575603002: Add data usage tracking for GAIA auth api (Closed)
Patch Set: Addressed tbansal comments Created 3 years, 11 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 | « no previous file | components/data_use_measurement/core/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 4
5 static_library("core") { 5 static_library("core") {
6 sources = [ 6 sources = [
7 "data_use_user_data.cc", 7 "data_use_user_data.cc",
8 "data_use_user_data.h", 8 "data_use_user_data.h",
9 ] 9 ]
10 deps = [ 10 deps = [
(...skipping 12 matching lines...) Expand all
23 "data_use_measurement.h", 23 "data_use_measurement.h",
24 "data_use_network_delegate.cc", 24 "data_use_network_delegate.cc",
25 "data_use_network_delegate.h", 25 "data_use_network_delegate.h",
26 "data_use_recorder.cc", 26 "data_use_recorder.cc",
27 "data_use_recorder.h", 27 "data_use_recorder.h",
28 ] 28 ]
29 deps = [ 29 deps = [
30 ":core", 30 ":core",
31 "//base", 31 "//base",
32 "//components/metrics", 32 "//components/metrics",
33 "//google_apis",
33 "//net", 34 "//net",
34 ] 35 ]
35 36
36 if (!is_ios) { 37 if (!is_ios) {
37 deps += [ "//components/domain_reliability" ] 38 deps += [ "//components/domain_reliability" ]
38 } 39 }
39 } 40 }
40 41
41 source_set("unit_tests") { 42 source_set("unit_tests") {
42 sources = [ 43 sources = [
43 "data_use_measurement_unittest.cc", 44 "data_use_measurement_unittest.cc",
44 "data_use_network_delegate_unittest.cc", 45 "data_use_network_delegate_unittest.cc",
45 ] 46 ]
46 testonly = true 47 testonly = true
47 deps = [ 48 deps = [
48 ":ascriber", 49 ":ascriber",
49 ":core", 50 ":core",
50 "//base/test:test_support", 51 "//base/test:test_support",
51 "//components/metrics:metrics", 52 "//components/metrics:metrics",
52 "//net:test_support", 53 "//net:test_support",
53 "//testing/gtest", 54 "//testing/gtest",
54 ] 55 ]
55 } 56 }
OLDNEW
« no previous file with comments | « no previous file | components/data_use_measurement/core/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698