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", |
(...skipping 17 matching lines...) Expand all Loading... |
28 "//base:i18n", | 28 "//base:i18n", |
29 "//components/autofill/content/common", | 29 "//components/autofill/content/common", |
30 "//components/autofill/core/common", | 30 "//components/autofill/core/common", |
31 "//components/strings", | 31 "//components/strings", |
32 "//content/public/common", | 32 "//content/public/common", |
33 "//content/public/renderer", | 33 "//content/public/renderer", |
34 "//google_apis", | 34 "//google_apis", |
35 "//ipc", | 35 "//ipc", |
36 "//net", | 36 "//net", |
37 "//skia", | 37 "//skia", |
| 38 "//third_party/WebKit/public:blink", |
38 "//third_party/icu", | 39 "//third_party/icu", |
39 "//third_party/WebKit/public:blink", | |
40 "//ui/base", | 40 "//ui/base", |
41 ] | 41 ] |
42 | 42 |
43 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 43 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
44 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 44 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
45 } | 45 } |
46 | 46 |
47 source_set("test_support") { | 47 source_set("test_support") { |
48 testonly = true | 48 testonly = true |
49 sources = [ | 49 sources = [ |
(...skipping 20 matching lines...) Expand all Loading... |
70 "renderer_save_password_progress_logger_unittest.cc", | 70 "renderer_save_password_progress_logger_unittest.cc", |
71 ] | 71 ] |
72 | 72 |
73 deps = [ | 73 deps = [ |
74 ":test_support", | 74 ":test_support", |
75 "//components/autofill/content/common", | 75 "//components/autofill/content/common", |
76 "//ipc:test_support", | 76 "//ipc:test_support", |
77 "//testing/gtest", | 77 "//testing/gtest", |
78 ] | 78 ] |
79 } | 79 } |
OLD | NEW |