| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |