OLD | NEW |
---|---|
1 # Copyright 2014 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("test_support") { | 5 static_library("test_support") { |
Peter Kasting
2016/10/18 17:31:12
I think you want a source_set here and not a stati
| |
6 testonly = true | 6 testonly = true |
7 sources = [ | 7 sources = [ |
8 "content_settings_test_utils.cc", | 8 "components_test_suite.cc", |
9 "content_settings_test_utils.h", | 9 "components_test_suite.h", |
10 ] | |
11 | |
12 public_deps = [ | |
13 "//components/content_settings/core/browser", | |
14 ] | 10 ] |
15 deps = [ | 11 deps = [ |
16 "//base", | |
17 "//components/content_settings/core/common", | 12 "//components/content_settings/core/common", |
18 "//testing/gmock", | 13 "//mojo/edk/system", |
14 "//net", | |
19 "//testing/gtest", | 15 "//testing/gtest", |
16 "//ui/base", | |
17 "//ui/resources:ui_test_pak", | |
20 ] | 18 ] |
21 } | 19 } |
OLD | NEW |