| Index: components/crx_file/BUILD.gn
|
| diff --git a/components/auto_login_parser/BUILD.gn b/components/crx_file/BUILD.gn
|
| similarity index 64%
|
| copy from components/auto_login_parser/BUILD.gn
|
| copy to components/crx_file/BUILD.gn
|
| index af92f0fa5483d43264361ea87dbaf59e2f9ac945..828a47fcbede60b063ea4f18aabc3aa386040cd0 100644
|
| --- a/components/auto_login_parser/BUILD.gn
|
| +++ b/components/crx_file/BUILD.gn
|
| @@ -2,25 +2,28 @@
|
| # Use of this source code is governed by a BSD-style license that can be
|
| # found in the LICENSE file.
|
|
|
| -source_set("auto_login_parser") {
|
| +source_set("crx_file") {
|
| sources = [
|
| - "auto_login_parser.cc",
|
| - "auto_login_parser.h",
|
| + "constants.h",
|
| + "crx_file.cc",
|
| + "crx_file.h",
|
| + "id_util.cc",
|
| + "id_util.h",
|
| ]
|
|
|
| deps = [
|
| "//base",
|
| - "//net",
|
| ]
|
| }
|
|
|
| source_set("unit_tests") {
|
| sources = [
|
| - "auto_login_parser_unittest.cc",
|
| + "id_util_unittest.cc",
|
| ]
|
|
|
| deps = [
|
| - ":auto_login_parser",
|
| + ":crx_file",
|
| "//testing/gtest",
|
| ]
|
| }
|
| +
|
|
|