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 source_set("net_log") { | 5 source_set("net_log") { |
6 sources = [ | 6 sources = [ |
7 "chrome_net_log.cc", | 7 "chrome_net_log.cc", |
8 "chrome_net_log.h", | 8 "chrome_net_log.h", |
9 "net_export_ui_constants.cc", | 9 "net_export_ui_constants.cc", |
10 "net_export_ui_constants.h", | 10 "net_export_ui_constants.h", |
11 "net_log_temp_file.cc", | 11 "net_log_temp_file.cc", |
12 "net_log_temp_file.h", | 12 "net_log_temp_file.h", |
13 ] | 13 ] |
14 | 14 |
15 deps = [ | 15 deps = [ |
16 "//base", | 16 "//base", |
17 "//components/data_reduction_proxy/core/common", | 17 "//components/data_reduction_proxy/core/common", |
18 "//components/version_info", | 18 "//components/version_info", |
19 "//net", | 19 "//net", |
20 ] | 20 ] |
21 } | 21 } |
22 | 22 |
23 source_set("unit_tests") { | 23 source_set("unit_tests") { |
24 testonly = true | 24 testonly = true |
25 sources = [ | 25 sources = [ |
26 "net_log_temp_file_unittest.cc", | 26 "net_log_temp_file_unittest.cc", |
27 ] | 27 ] |
28 deps = [ | 28 deps = [ |
| 29 ":net_log", |
29 "//base", | 30 "//base", |
30 "//net", | 31 "//net", |
31 "//testing/gtest", | 32 "//testing/gtest", |
32 ":net_log", | |
33 ] | 33 ] |
34 } | 34 } |
OLD | NEW |