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 import("//chrome/version.gni") # TODO layering violation! |
5 import("//testing/test.gni") | 6 import("//testing/test.gni") |
6 | 7 |
7 source_set("crypto") { | 8 source_set("crypto") { |
8 sources = [ | 9 sources = [ |
9 "signature_cache.cc", | 10 "signature_cache.cc", |
10 "signature_cache.h", | 11 "signature_cache.h", |
11 ] | 12 ] |
12 | 13 |
13 deps = [ | 14 deps = [ |
14 "//base", | 15 "//base", |
15 ] | 16 ] |
16 } | 17 } |
17 | 18 |
18 # Note: this doesn't correspond to a GYP unit test and should be merged with | 19 # Note: this doesn't correspond to a GYP unit test and should be merged with |
19 # others. (b/22952424) | 20 # others. (b/22952424) |
20 test("cast_crypto_unittests") { | 21 test("cast_crypto_unittests") { |
21 sources = [ | 22 sources = [ |
22 "signature_cache_unittest.cc", | 23 "signature_cache_unittest.cc", |
23 ] | 24 ] |
24 | 25 |
25 deps = [ | 26 deps = [ |
26 ":crypto", | 27 ":crypto", |
27 "//base", | 28 "//base", |
28 "//base/test:run_all_unittests", | 29 "//base/test:run_all_unittests", |
29 "//testing/gtest", | 30 "//testing/gtest", |
30 ] | 31 ] |
31 } | 32 } |
OLD | NEW |