| 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 20 matching lines...) Expand all Loading... |
| 31 "//content/public/common", | 31 "//content/public/common", |
| 32 "//content/public/renderer", | 32 "//content/public/renderer", |
| 33 "//google_apis", | 33 "//google_apis", |
| 34 "//ipc", | 34 "//ipc", |
| 35 "//net", | 35 "//net", |
| 36 "//skia", | 36 "//skia", |
| 37 "//third_party/WebKit/public:blink", | 37 "//third_party/WebKit/public:blink", |
| 38 "//ui/base", | 38 "//ui/base", |
| 39 ] | 39 ] |
| 40 | 40 |
| 41 if (is_win) { | 41 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 42 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 42 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 43 cflags = [ "/wd4267" ] | |
| 44 } | |
| 45 } | 43 } |
| OLD | NEW |