| 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("net_log") { | 5 static_library("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", |
| (...skipping 10 matching lines...) Expand all Loading... |
| 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_file_writer_unittest.cc", | 26 "net_log_file_writer_unittest.cc", |
| 27 ] | 27 ] |
| 28 deps = [ | 28 deps = [ |
| 29 ":net_log", | 29 ":net_log", |
| 30 "//base", | 30 "//base", |
| 31 "//base/test:test_support", |
| 31 "//net", | 32 "//net", |
| 33 "//net:test_support", |
| 32 "//testing/gtest", | 34 "//testing/gtest", |
| 33 ] | 35 ] |
| 34 } | 36 } |
| OLD | NEW |