Support swap promises that are pinned to a particular layer tree.
[chromium-blink-merge.git] / chromecast / crypto / BUILD.gn
blob8964b4d41ca3efbd572753361e5eabf9b263cec8
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
3 # found in the LICENSE file.
5 import("//chrome/version.gni")  # TODO layering violation!
6 import("//testing/test.gni")
8 source_set("crypto") {
9   sources = [
10     "signature_cache.cc",
11     "signature_cache.h",
12   ]
14   configs += [ "//chromecast:config" ]
16   deps = [
17     "//base",
18   ]
21 # Note: this doesn't correspond to a GYP unit test and should be merged with
22 # others. (b/22952424)
23 test("cast_crypto_unittests") {
24   sources = [
25     "signature_cache_unittest.cc",
26   ]
28   deps = [
29     ":crypto",
30     "//base",
31     "//base/test:run_all_unittests",
32     "//testing/gtest",
33   ]