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

Side by Side Diff: components/data_use_measurement/content/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: Add if defined(ENABLE_EXTENSIONS) to tests. 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.
bengr 2015/09/01 17:00:10 The year is 2015. :)
amohammadkhan 2015/09/01 19:38:14 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 source_set("data_use_measurement_content") {
6 sources = [
7 "data_use_measurement.cc",
8 "data_use_measurement.h",
9 ]
10 deps = [
11 "//base",
12 "//components/data_use_measurement/core:data_use_measurement_core",
13 "//content/public/browser",
14 "//net",
15 ]
16 }
17 source_set("data_use_measurement_unittests") {
18 sources = [
19 "data_use_measurement_unittest.cc",
20 ]
21 testonly = true
22 deps = [
23 ":data_use_measurement_content",
24 "//base",
25 "//components/data_use_measurement/core:data_use_measurement_core",
26 "//content/public/browser",
27 "//net",
28 "//testing/gmock",
29 "//testing/gtest",
30 ]
31 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698