| 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 "autofill_constants.cc", | 7 "autofill_constants.cc", |
| 8 "autofill_constants.h", | 8 "autofill_constants.h", |
| 9 "autofill_data_validation.cc", | 9 "autofill_data_validation.cc", |
| 10 "autofill_data_validation.h", | 10 "autofill_data_validation.h", |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 "password_form_fill_data.h", | 32 "password_form_fill_data.h", |
| 33 "password_generation_util.cc", | 33 "password_generation_util.cc", |
| 34 "password_generation_util.h", | 34 "password_generation_util.h", |
| 35 "save_password_progress_logger.cc", | 35 "save_password_progress_logger.cc", |
| 36 "save_password_progress_logger.h", | 36 "save_password_progress_logger.h", |
| 37 ] | 37 ] |
| 38 | 38 |
| 39 deps = [ | 39 deps = [ |
| 40 "//base", | 40 "//base", |
| 41 "//base:i18n", | 41 "//base:i18n", |
| 42 "//third_party/re2", |
| 42 "//ui/base", | 43 "//ui/base", |
| 43 "//ui/gfx", | 44 "//ui/gfx", |
| 44 "//url", | 45 "//url", |
| 45 ] | 46 ] |
| 46 | 47 |
| 47 if (is_android) { | 48 if (is_android) { |
| 48 # deps += [ 'autofill_jni_headers' ] TODO(GYP) | 49 # deps += [ 'autofill_jni_headers' ] TODO(GYP) |
| 49 } | 50 } |
| 50 | 51 |
| 51 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 52 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| (...skipping 15 matching lines...) Expand all Loading... |
| 67 ":common", | 68 ":common", |
| 68 "//base", | 69 "//base", |
| 69 "//base:i18n", | 70 "//base:i18n", |
| 70 "//base/test:test_support", | 71 "//base/test:test_support", |
| 71 "//components/autofill/core/browser", | 72 "//components/autofill/core/browser", |
| 72 "//testing/gmock", | 73 "//testing/gmock", |
| 73 "//testing/gtest", | 74 "//testing/gtest", |
| 74 "//url", | 75 "//url", |
| 75 ] | 76 ] |
| 76 } | 77 } |
| OLD | NEW |