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("//testing/test.gni") | 5 import("//testing/test.gni") |
6 | 6 |
7 source_set("webcrypto") { | 7 source_set("webcrypto") { |
8 sources = [ | 8 sources = [ |
9 "algorithm_dispatch.cc", | 9 "algorithm_dispatch.cc", |
10 "algorithm_dispatch.h", | 10 "algorithm_dispatch.h", |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
80 "algorithms/test_helpers.h", | 80 "algorithms/test_helpers.h", |
81 "status_unittest.cc", | 81 "status_unittest.cc", |
82 ] | 82 ] |
83 | 83 |
84 deps = [ | 84 deps = [ |
85 ":webcrypto", | 85 ":webcrypto", |
86 "//base/test:test_support", | 86 "//base/test:test_support", |
87 "//components/test_runner:test_runner", | 87 "//components/test_runner:test_runner", |
88 "//crypto", | 88 "//crypto", |
89 "//crypto:platform", | 89 "//crypto:platform", |
| 90 "//testing/gtest", |
90 "//testing/perf", | 91 "//testing/perf", |
91 "//testing/gtest", | |
92 "//third_party/WebKit/public:blink", | 92 "//third_party/WebKit/public:blink", |
93 "//third_party/re2", | 93 "//third_party/re2", |
94 ] | 94 ] |
95 } | 95 } |
OLD | NEW |