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

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

Issue 1307763004: Sync remaining components_unittests with GN (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix gn check Created 5 years, 3 months 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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 46
47 source_set("test_support") { 47 source_set("test_support") {
48 testonly = true 48 testonly = true
49 sources = [ 49 sources = [
50 "test_password_autofill_agent.cc", 50 "test_password_autofill_agent.cc",
51 "test_password_autofill_agent.h", 51 "test_password_autofill_agent.h",
52 "test_password_generation_agent.cc", 52 "test_password_generation_agent.cc",
53 "test_password_generation_agent.h", 53 "test_password_generation_agent.h",
54 ] 54 ]
55 55
56 public_deps = [
57 ":renderer",
58 "//base",
59 ]
56 deps = [ 60 deps = [
57 "//base",
58 "//components/autofill/content/renderer", 61 "//components/autofill/content/renderer",
59 "//ipc", 62 "//ipc",
60 "//skia", 63 "//skia",
61 ] 64 ]
62 } 65 }
66
67 source_set("unit_tests") {
68 testonly = true
69 sources = [
70 "renderer_save_password_progress_logger_unittest.cc",
71 ]
72
73 deps = [
74 ":test_support",
75 "//components/autofill/content/common",
76 "//ipc:test_support",
77 "//testing/gtest",
78 ]
79 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698