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_clock.cc", | 7 "autofill_clock.cc", |
8 "autofill_clock.h", | 8 "autofill_clock.h", |
9 "autofill_constants.cc", | 9 "autofill_constants.cc", |
10 "autofill_constants.h", | 10 "autofill_constants.h", |
(...skipping 30 matching lines...) Expand all Loading... |
41 "password_generation_util.h", | 41 "password_generation_util.h", |
42 "save_password_progress_logger.cc", | 42 "save_password_progress_logger.cc", |
43 "save_password_progress_logger.h", | 43 "save_password_progress_logger.h", |
44 "signatures_util.cc", | 44 "signatures_util.cc", |
45 "signatures_util.h", | 45 "signatures_util.h", |
46 ] | 46 ] |
47 | 47 |
48 deps = [ | 48 deps = [ |
49 "//base", | 49 "//base", |
50 "//base:i18n", | 50 "//base:i18n", |
| 51 "//components/variations", |
51 "//third_party/re2", | 52 "//third_party/re2", |
52 "//url", | 53 "//url", |
53 ] | 54 ] |
54 | 55 |
55 if (is_android) { | 56 if (is_android) { |
56 # deps += [ 'autofill_jni_headers' ] TODO(GYP) | 57 # deps += [ 'autofill_jni_headers' ] TODO(GYP) |
57 } | 58 } |
58 | 59 |
59 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 60 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
60 } | 61 } |
(...skipping 13 matching lines...) Expand all Loading... |
74 deps = [ | 75 deps = [ |
75 ":common", | 76 ":common", |
76 "//base", | 77 "//base", |
77 "//base:i18n", | 78 "//base:i18n", |
78 "//base/test:test_support", | 79 "//base/test:test_support", |
79 "//testing/gmock", | 80 "//testing/gmock", |
80 "//testing/gtest", | 81 "//testing/gtest", |
81 "//url", | 82 "//url", |
82 ] | 83 ] |
83 } | 84 } |
OLD | NEW |