OLD | NEW |
(Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 |
| 5 static_library("content") { |
| 6 sources = [ |
| 7 "content_utils.cc", |
| 8 "content_utils.h", |
| 9 ] |
| 10 |
| 11 public_deps = [ |
| 12 "//components/security_state/core", |
| 13 ] |
| 14 |
| 15 deps = [ |
| 16 "//base", |
| 17 "//components/strings", |
| 18 "//content/public/browser", |
| 19 "//content/public/common", |
| 20 "//net", |
| 21 "//third_party/WebKit/public:blink_headers", |
| 22 "//ui/base", |
| 23 ] |
| 24 } |
| 25 |
| 26 source_set("unit_tests") { |
| 27 testonly = true |
| 28 sources = [ |
| 29 "content_utils_unittest.cc", |
| 30 ] |
| 31 |
| 32 deps = [ |
| 33 ":content", |
| 34 "//base", |
| 35 "//base/test:test_support", |
| 36 "//components/security_state/core", |
| 37 "//content/public/browser", |
| 38 "//content/test:test_support", |
| 39 "//net", |
| 40 "//testing/gtest", |
| 41 ] |
| 42 } |
OLD | NEW |