blob: 8c5cceb5db231265389ad60cf8ac7b21ca5576b9 [file] [log] [blame]
[email protected]478ed232014-08-19 02:10:551# Copyright 2014 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.
4
brettw8deee3902016-07-22 03:55:525static_library("crx_file") {
[email protected]478ed232014-08-19 02:10:556 sources = [
[email protected]478ed232014-08-19 02:10:557 "crx_file.cc",
8 "crx_file.h",
[email protected]fdd28372014-08-21 02:27:269 "id_util.cc",
10 "id_util.h",
[email protected]478ed232014-08-19 02:10:5511 ]
12
13 deps = [
14 "//base",
brettw462851f72014-11-26 18:38:5515 "//crypto",
[email protected]478ed232014-08-19 02:10:5516 ]
17}
[email protected]fdd28372014-08-21 02:27:2618
19source_set("unit_tests") {
Brett Wilson0c8745a2014-09-08 22:59:4920 testonly = true
[email protected]fdd28372014-08-21 02:27:2621 sources = [
22 "id_util_unittest.cc",
23 ]
24
25 deps = [
26 ":crx_file",
brettw462851f72014-11-26 18:38:5527 "//base",
[email protected]fdd28372014-08-21 02:27:2628 "//testing/gtest",
29 ]
30}