| Index: components/proximity_auth/BUILD.gn
|
| diff --git a/components/crx_file/BUILD.gn b/components/proximity_auth/BUILD.gn
|
| similarity index 58%
|
| copy from components/crx_file/BUILD.gn
|
| copy to components/proximity_auth/BUILD.gn
|
| index db28483a1feae88144a107001e2b0a725e6de31c..11818d9d32d9a9a809fa09b7dc96b657ff13c923 100644
|
| --- a/components/crx_file/BUILD.gn
|
| +++ b/components/proximity_auth/BUILD.gn
|
| @@ -2,13 +2,11 @@
|
| # Use of this source code is governed by a BSD-style license that can be
|
| # found in the LICENSE file.
|
|
|
| -source_set("crx_file") {
|
| +static_library("proximity_auth") {
|
| sources = [
|
| - "constants.h",
|
| - "crx_file.cc",
|
| - "crx_file.h",
|
| - "id_util.cc",
|
| - "id_util.h",
|
| + "proximity_auth_system.cc",
|
| + "proximity_auth_system.h",
|
| + "remote_device.h",
|
| ]
|
|
|
| deps = [
|
| @@ -18,11 +16,12 @@ source_set("crx_file") {
|
|
|
| source_set("unit_tests") {
|
| sources = [
|
| - "id_util_unittest.cc",
|
| + "proximity_auth_system_unittest.cc",
|
| ]
|
|
|
| deps = [
|
| - ":crx_file",
|
| + ":proximity_auth",
|
| + "//base/test:test_support",
|
| "//testing/gtest",
|
| ]
|
| }
|
|
|