Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(9)

Side by Side Diff: components/autofill/content/renderer/BUILD.gn

Issue 1464873002: Run gn --format over all .gn files (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698