amohammadkhan | 092adb2 | 2015-09-11 21:08:49 | [diff] [blame^] | 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 |
| 3 | # found in the LICENSE file. |
| 4 | |
| 5 | source_set("content") { |
| 6 | sources = [ |
| 7 | "data_use_measurement.cc", |
| 8 | "data_use_measurement.h", |
| 9 | ] |
| 10 | deps = [ |
| 11 | "//base", |
| 12 | "//components/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 | ":content", |
| 24 | "//base", |
| 25 | "//components/data_use_measurement/core", |
| 26 | "//content/public/browser", |
| 27 | "//net", |
| 28 | "//net:test_support", |
| 29 | "//testing/gtest", |
| 30 | "//url", |
| 31 | ] |
| 32 | } |