[email protected] | 478ed23 | 2014-08-19 02:10:55 | [diff] [blame] | 1 | # 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 | |||||
brettw | 8deee390 | 2016-07-22 03:55:52 | [diff] [blame^] | 5 | static_library("crx_file") { |
[email protected] | 478ed23 | 2014-08-19 02:10:55 | [diff] [blame] | 6 | sources = [ |
[email protected] | 478ed23 | 2014-08-19 02:10:55 | [diff] [blame] | 7 | "crx_file.cc", |
8 | "crx_file.h", | ||||
[email protected] | fdd2837 | 2014-08-21 02:27:26 | [diff] [blame] | 9 | "id_util.cc", |
10 | "id_util.h", | ||||
[email protected] | 478ed23 | 2014-08-19 02:10:55 | [diff] [blame] | 11 | ] |
12 | |||||
13 | deps = [ | ||||
14 | "//base", | ||||
brettw | 462851f7 | 2014-11-26 18:38:55 | [diff] [blame] | 15 | "//crypto", |
[email protected] | 478ed23 | 2014-08-19 02:10:55 | [diff] [blame] | 16 | ] |
17 | } | ||||
[email protected] | fdd2837 | 2014-08-21 02:27:26 | [diff] [blame] | 18 | |
19 | source_set("unit_tests") { | ||||
Brett Wilson | 0c8745a | 2014-09-08 22:59:49 | [diff] [blame] | 20 | testonly = true |
[email protected] | fdd2837 | 2014-08-21 02:27:26 | [diff] [blame] | 21 | sources = [ |
22 | "id_util_unittest.cc", | ||||
23 | ] | ||||
24 | |||||
25 | deps = [ | ||||
26 | ":crx_file", | ||||
brettw | 462851f7 | 2014-11-26 18:38:55 | [diff] [blame] | 27 | "//base", |
[email protected] | fdd2837 | 2014-08-21 02:27:26 | [diff] [blame] | 28 | "//testing/gtest", |
29 | ] | ||||
30 | } |