Chromium Code Reviews| Index: components/crx_file/BUILD.gn |
| diff --git a/components/crx_file/BUILD.gn b/components/crx_file/BUILD.gn |
| index e8d4798f777e7116eb20136f8906bf410bac8150..db28483a1feae88144a107001e2b0a725e6de31c 100644 |
| --- a/components/crx_file/BUILD.gn |
| +++ b/components/crx_file/BUILD.gn |
| @@ -7,9 +7,22 @@ source_set("crx_file") { |
| "constants.h", |
| "crx_file.cc", |
| "crx_file.h", |
| + "id_util.cc", |
| + "id_util.h", |
| ] |
| deps = [ |
| "//base", |
| ] |
| } |
| + |
| +source_set("unit_tests") { |
| + sources = [ |
| + "id_util_unittest.cc", |
| + ] |
| + |
| + deps = [ |
| + ":crx_file", |
| + "//testing/gtest", |
| + ] |
| +} |