| 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 19 matching lines...) Expand all Loading... |
| 30 "//base:i18n", | 30 "//base:i18n", |
| 31 "//components/autofill/content/public/interfaces", | 31 "//components/autofill/content/public/interfaces", |
| 32 "//components/autofill/core/common", | 32 "//components/autofill/core/common", |
| 33 "//components/strings", | 33 "//components/strings", |
| 34 "//content/public/common", | 34 "//content/public/common", |
| 35 "//content/public/renderer", | 35 "//content/public/renderer", |
| 36 "//google_apis", | 36 "//google_apis", |
| 37 "//ipc", | 37 "//ipc", |
| 38 "//mojo/common:common_base", | 38 "//mojo/common:common_base", |
| 39 "//net", | 39 "//net", |
| 40 "//services/shell/public/cpp", | 40 "//services/service_manager/public/cpp", |
| 41 "//skia", | 41 "//skia", |
| 42 "//third_party/WebKit/public:blink", | 42 "//third_party/WebKit/public:blink", |
| 43 "//third_party/re2", | 43 "//third_party/re2", |
| 44 "//ui/base", | 44 "//ui/base", |
| 45 ] | 45 ] |
| 46 | 46 |
| 47 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 47 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 48 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 48 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 49 } | 49 } |
| 50 | 50 |
| (...skipping 22 matching lines...) Expand all Loading... |
| 73 sources = [ | 73 sources = [ |
| 74 "renderer_save_password_progress_logger_unittest.cc", | 74 "renderer_save_password_progress_logger_unittest.cc", |
| 75 ] | 75 ] |
| 76 | 76 |
| 77 deps = [ | 77 deps = [ |
| 78 ":test_support", | 78 ":test_support", |
| 79 "//components/autofill/content/public/interfaces", | 79 "//components/autofill/content/public/interfaces", |
| 80 "//testing/gtest", | 80 "//testing/gtest", |
| 81 ] | 81 ] |
| 82 } | 82 } |
| OLD | NEW |