| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 static_library("common") { | 5 static_library("common") { |
| 6 sources = [ | 6 sources = [ |
| 7 # TODO(brettw) why are these "browser" files in the "common" target? | 7 # TODO(brettw) why are these "browser" files in the "common" target? |
| 8 "../browser/android/auxiliary_profile_loader_android.cc", | 8 "../browser/android/auxiliary_profile_loader_android.cc", |
| 9 "../browser/android/auxiliary_profile_loader_android.h", | 9 "../browser/android/auxiliary_profile_loader_android.h", |
| 10 "../browser/android/auxiliary_profiles_android.cc", | 10 "../browser/android/auxiliary_profiles_android.cc", |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 "//ui/gfx", | 48 "//ui/gfx", |
| 49 "//url", | 49 "//url", |
| 50 ] | 50 ] |
| 51 | 51 |
| 52 if (is_android) { | 52 if (is_android) { |
| 53 # deps += [ 'autofill_jni_headers' ] TODO(GYP) | 53 # deps += [ 'autofill_jni_headers' ] TODO(GYP) |
| 54 } | 54 } |
| 55 } | 55 } |
| 56 | 56 |
| 57 source_set("unit_tests") { | 57 source_set("unit_tests") { |
| 58 testonly = true |
| 58 sources = [ | 59 sources = [ |
| 59 "form_data_unittest.cc", | 60 "form_data_unittest.cc", |
| 60 "form_field_data_unittest.cc", | 61 "form_field_data_unittest.cc", |
| 61 "password_form_fill_data_unittest.cc", | 62 "password_form_fill_data_unittest.cc", |
| 62 "save_password_progress_logger_unittest.cc", | 63 "save_password_progress_logger_unittest.cc", |
| 63 ] | 64 ] |
| 64 | 65 |
| 65 deps = [ | 66 deps = [ |
| 66 ":common", | 67 ":common", |
| 67 "//testing/gmock", | 68 "//testing/gmock", |
| 68 "//testing/gtest", | 69 "//testing/gtest", |
| 69 ] | 70 ] |
| 70 } | 71 } |
| OLD | NEW |