| 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 "status.cc", | 51 "status.cc", |
| 52 "status.h", | 52 "status.h", |
| 53 "webcrypto_impl.cc", | 53 "webcrypto_impl.cc", |
| 54 "webcrypto_impl.h", | 54 "webcrypto_impl.h", |
| 55 ] | 55 ] |
| 56 | 56 |
| 57 deps = [ | 57 deps = [ |
| 58 "//base", | 58 "//base", |
| 59 "//crypto", | 59 "//crypto", |
| 60 "//crypto:platform", | 60 "//crypto:platform", |
| 61 "//third_party/WebKit/public:blink", | 61 "//third_party/WebKit/public:blink_headers", |
| 62 ] | 62 ] |
| 63 } | 63 } |
| 64 | 64 |
| 65 source_set("unit_tests") { | 65 source_set("unit_tests") { |
| 66 testonly = true | 66 testonly = true |
| 67 sources = [ | 67 sources = [ |
| 68 "algorithms/aes_cbc_unittest.cc", | 68 "algorithms/aes_cbc_unittest.cc", |
| 69 "algorithms/aes_ctr_unittest.cc", | 69 "algorithms/aes_ctr_unittest.cc", |
| 70 "algorithms/aes_gcm_unittest.cc", | 70 "algorithms/aes_gcm_unittest.cc", |
| 71 "algorithms/aes_kw_unittest.cc", | 71 "algorithms/aes_kw_unittest.cc", |
| (...skipping 14 matching lines...) Expand all Loading... |
| 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/gtest", |
| 91 "//testing/perf", | 91 "//testing/perf", |
| 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 |