Chromium Code Reviews| Index: components/proximity_auth/BUILD.gn |
| diff --git a/components/auto_login_parser/BUILD.gn b/components/proximity_auth/BUILD.gn |
| similarity index 55% |
| copy from components/auto_login_parser/BUILD.gn |
| copy to components/proximity_auth/BUILD.gn |
| index af92f0fa5483d43264361ea87dbaf59e2f9ac945..583d22a4f31e21568b2f9636db9f5deab76c960d 100644 |
| --- a/components/auto_login_parser/BUILD.gn |
| +++ b/components/proximity_auth/BUILD.gn |
| @@ -2,25 +2,22 @@ |
| # 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") { |
| +static_library("proximity_auth") { |
| sources = [ |
| - "auto_login_parser.cc", |
| - "auto_login_parser.h", |
| - ] |
| - |
| - deps = [ |
| - "//base", |
| - "//net", |
| + "proximity_auth_system.cc", |
| + "proximity_auth_system.h", |
| + "remote_device.h", |
| ] |
|
blundell
2014/08/29 10:15:46
and here.
Tim Song
2014/08/29 18:20:38
Done.
|
| } |
| source_set("unit_tests") { |
| sources = [ |
| - "auto_login_parser_unittest.cc", |
| + "proximity_auth_system_unittest.cc", |
| ] |
| deps = [ |
| - ":auto_login_parser", |
| + ":proximity_auth", |
| + "//base/test:test_support", |
| "//testing/gtest", |
| ] |
| } |