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

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

Issue 1330443002: Report data usage UMA for Chrome services (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@NewArchServices
Patch Set: Fix calling Init function in sync_client.cc 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
« no previous file with comments | « components/domain_reliability.gypi ('k') | components/domain_reliability/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 2014 The Chromium Authors. All rights reserved. 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 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 # Paths to the JSON files are kind of gross. They're stored in the gypi 5 # Paths to the JSON files are kind of gross. They're stored in the gypi
6 # relative to //components, since that's the working directory gyp seems 6 # relative to //components, since that's the working directory gyp seems
7 # to use for all of the components. When we depend on them here, we need 7 # to use for all of the components. When we depend on them here, we need
8 # to remove the leading domain_reliability, since *our* working directory 8 # to remove the leading domain_reliability, since *our* working directory
9 # is one level deeper. When we call bake_in_configs.py, we need to give 9 # is one level deeper. When we call bake_in_configs.py, we need to give
10 # it a properly-rebased path to //components so it can properly join the 10 # it a properly-rebased path to //components so it can properly join the
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 "util.cc", 60 "util.cc",
61 "util.h", 61 "util.h",
62 ] 62 ]
63 sources += get_target_outputs(":bake_in_configs") 63 sources += get_target_outputs(":bake_in_configs")
64 64
65 defines = [ "DOMAIN_RELIABILITY_IMPLEMENTATION" ] 65 defines = [ "DOMAIN_RELIABILITY_IMPLEMENTATION" ]
66 66
67 deps = [ 67 deps = [
68 ":bake_in_configs", 68 ":bake_in_configs",
69 "//base", 69 "//base",
70 "//components/data_use_measurement/core",
70 "//components/keyed_service/core", 71 "//components/keyed_service/core",
71 "//content/public/browser", 72 "//content/public/browser",
72 "//net", 73 "//net",
73 "//url", 74 "//url",
74 ] 75 ]
75 } 76 }
76 77
77 source_set("unit_tests") { 78 source_set("unit_tests") {
78 testonly = true 79 testonly = true
79 sources = [ 80 sources = [
(...skipping 11 matching lines...) Expand all
91 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 92 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
92 93
93 deps = [ 94 deps = [
94 ":domain_reliability", 95 ":domain_reliability",
95 "//base", 96 "//base",
96 "//base/test:test_support", 97 "//base/test:test_support",
97 "//net:test_support", 98 "//net:test_support",
98 "//testing/gtest", 99 "//testing/gtest",
99 ] 100 ]
100 } 101 }
OLDNEW
« no previous file with comments | « components/domain_reliability.gypi ('k') | components/domain_reliability/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698