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

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

Issue 2143253002: Convert test_support source sets to static libs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Android Created 4 years, 5 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
« no previous file with comments | « chrome/test/BUILD.gn ('k') | components/autofill/core/browser/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 30 matching lines...) Expand all
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
51 source_set("test_support") { 51 static_library("test_support") {
52 testonly = true 52 testonly = true
53 sources = [ 53 sources = [
54 "test_password_autofill_agent.cc", 54 "test_password_autofill_agent.cc",
55 "test_password_autofill_agent.h", 55 "test_password_autofill_agent.h",
56 "test_password_generation_agent.cc", 56 "test_password_generation_agent.cc",
57 "test_password_generation_agent.h", 57 "test_password_generation_agent.h",
58 ] 58 ]
59 59
60 public_deps = [ 60 public_deps = [
61 ":renderer", 61 ":renderer",
(...skipping 12 matching lines...) Expand all
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/common", 79 "//components/autofill/content/common",
80 "//ipc:test_support", 80 "//ipc:test_support",
81 "//testing/gtest", 81 "//testing/gtest",
82 ] 82 ]
83 } 83 }
OLDNEW
« no previous file with comments | « chrome/test/BUILD.gn ('k') | components/autofill/core/browser/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698