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? | |
8 "../browser/android/auxiliary_profile_loader_android.cc", | |
9 "../browser/android/auxiliary_profile_loader_android.h", | |
10 "../browser/android/auxiliary_profiles_android.cc", | |
11 "../browser/android/auxiliary_profiles_android.h", | |
12 "../browser/android/component_jni_registrar.cc", | |
13 "../browser/android/component_jni_registrar.h", | |
14 "../browser/android/personal_data_manager_android.cc", | |
15 "autofill_constants.cc", | 7 "autofill_constants.cc", |
16 "autofill_constants.h", | 8 "autofill_constants.h", |
17 "autofill_data_validation.cc", | 9 "autofill_data_validation.cc", |
18 "autofill_data_validation.h", | 10 "autofill_data_validation.h", |
19 "autofill_pref_names.cc", | 11 "autofill_pref_names.cc", |
20 "autofill_pref_names.h", | 12 "autofill_pref_names.h", |
21 "autofill_switches.cc", | 13 "autofill_switches.cc", |
22 "autofill_switches.h", | 14 "autofill_switches.h", |
23 "form_data.cc", | 15 "form_data.cc", |
24 "form_data.h", | 16 "form_data.h", |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
62 "password_form_fill_data_unittest.cc", | 54 "password_form_fill_data_unittest.cc", |
63 "save_password_progress_logger_unittest.cc", | 55 "save_password_progress_logger_unittest.cc", |
64 ] | 56 ] |
65 | 57 |
66 deps = [ | 58 deps = [ |
67 ":common", | 59 ":common", |
68 "//testing/gmock", | 60 "//testing/gmock", |
69 "//testing/gtest", | 61 "//testing/gtest", |
70 ] | 62 ] |
71 } | 63 } |
OLD | NEW |