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("renderer") { | 5 static_library("renderer") { |
6 sources = [ | 6 sources = [ |
7 "autofill_agent.cc", | 7 "autofill_agent.cc", |
8 "autofill_agent.h", | 8 "autofill_agent.h", |
9 "form_autofill_util.cc", | 9 "form_autofill_util.cc", |
10 "form_autofill_util.h", | 10 "form_autofill_util.h", |
11 "form_cache.cc", | 11 "form_cache.cc", |
12 "form_cache.h", | 12 "form_cache.h", |
13 "page_click_listener.h", | 13 "page_click_listener.h", |
14 "page_click_tracker.cc", | 14 "page_click_tracker.cc", |
15 "page_click_tracker.h", | 15 "page_click_tracker.h", |
16 "password_autofill_agent.cc", | 16 "password_autofill_agent.cc", |
17 "password_autofill_agent.h", | 17 "password_autofill_agent.h", |
18 "password_form_conversion_utils.cc", | 18 "password_form_conversion_utils.cc", |
19 "password_form_conversion_utils.h", | 19 "password_form_conversion_utils.h", |
20 "password_generation_agent.cc", | 20 "password_generation_agent.cc", |
21 "password_generation_agent.h", | 21 "password_generation_agent.h", |
22 "renderer_save_password_progress_logger.cc", | 22 "renderer_save_password_progress_logger.cc", |
23 "renderer_save_password_progress_logger.h", | 23 "renderer_save_password_progress_logger.h", |
24 ] | 24 ] |
25 | 25 |
26 deps = [ | 26 deps = [ |
27 "//base", | 27 "//base", |
| 28 "//base:i18n", |
28 "//components/autofill/content/common", | 29 "//components/autofill/content/common", |
29 "//components/autofill/core/common", | 30 "//components/autofill/core/common", |
30 "//components/strings", | 31 "//components/strings", |
31 "//content/public/common", | 32 "//content/public/common", |
32 "//content/public/renderer", | 33 "//content/public/renderer", |
33 "//google_apis", | 34 "//google_apis", |
34 "//ipc", | 35 "//ipc", |
35 "//net", | 36 "//net", |
36 "//skia", | 37 "//skia", |
37 "//third_party/icu", | 38 "//third_party/icu", |
(...skipping 14 matching lines...) Expand all Loading... |
52 "test_password_generation_agent.h", | 53 "test_password_generation_agent.h", |
53 ] | 54 ] |
54 | 55 |
55 deps = [ | 56 deps = [ |
56 "//base", | 57 "//base", |
57 "//components/autofill/content/renderer", | 58 "//components/autofill/content/renderer", |
58 "//ipc", | 59 "//ipc", |
59 "//skia", | 60 "//skia", |
60 ] | 61 ] |
61 } | 62 } |
OLD | NEW |