Chromium Code Reviews| Index: components/autofill/core/common/BUILD.gn |
| diff --git a/components/autofill/core/common/BUILD.gn b/components/autofill/core/common/BUILD.gn |
| index d75af87c0af4fc6c6cf90a2bcae3e151afbf8dd9..0a988829583a5cc0c0244a8236492756010c6942 100644 |
| --- a/components/autofill/core/common/BUILD.gn |
| +++ b/components/autofill/core/common/BUILD.gn |
| @@ -53,3 +53,18 @@ static_library("common") { |
| # deps += [ 'autofill_jni_headers' ] TODO(GYP) |
| } |
| } |
| + |
| +source_set("unit_tests") { |
| + sources = [ |
| + "form_data_unittest.cc", |
| + "form_field_data_unittest.cc", |
| + "password_form_fill_data_unittest.cc", |
| + "save_password_progress_logger_unittest.cc" |
|
DaleCurtis
2014/07/18 18:01:21
, for consistency.
|
| + ] |
| + |
| + deps = [ |
| + ":common", |
| + "//testing/gmock", |
| + "//testing/gtest", |
| + ] |
| +} |