| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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("content") { | 5 static_library("content") { |
| 6 sources = [ | 6 sources = [ |
| 7 "content_utils.cc", | 7 "content_utils.cc", |
| 8 "content_utils.h", | 8 "content_utils.h", |
| 9 ] | 9 ] |
| 10 | 10 |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 ] | 30 ] |
| 31 | 31 |
| 32 deps = [ | 32 deps = [ |
| 33 ":content", | 33 ":content", |
| 34 "//base", | 34 "//base", |
| 35 "//base/test:test_support", | 35 "//base/test:test_support", |
| 36 "//components/security_state/core", | 36 "//components/security_state/core", |
| 37 "//content/public/browser", | 37 "//content/public/browser", |
| 38 "//content/test:test_support", | 38 "//content/test:test_support", |
| 39 "//net", | 39 "//net", |
| 40 "//net:test_support", |
| 40 "//testing/gtest", | 41 "//testing/gtest", |
| 41 ] | 42 ] |
| 42 } | 43 } |
| OLD | NEW |