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

Side by Side Diff: components/password_manager/content/browser/BUILD.gn

Issue 1415533013: Fix password manager internals renderer reporting (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Separate dummy log manager 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 source_set("browser") { 5 source_set("browser") {
6 sources = [ 6 sources = [
7 "bad_message.cc", 7 "bad_message.cc",
8 "bad_message.h", 8 "bad_message.h",
9 "content_password_manager_driver.cc", 9 "content_password_manager_driver.cc",
10 "content_password_manager_driver.h", 10 "content_password_manager_driver.h",
(...skipping 16 matching lines...) Expand all
27 "//content/public/browser", 27 "//content/public/browser",
28 "//content/public/common", 28 "//content/public/common",
29 "//ipc", 29 "//ipc",
30 "//net", 30 "//net",
31 ] 31 ]
32 } 32 }
33 33
34 source_set("unit_tests") { 34 source_set("unit_tests") {
35 testonly = true 35 testonly = true
36 sources = [ 36 sources = [
37 "content_password_manager_driver_unittest.cc",
37 "credential_manager_dispatcher_unittest.cc", 38 "credential_manager_dispatcher_unittest.cc",
38 ] 39 ]
39 deps = [ 40 deps = [
40 ":browser", 41 ":browser",
41 "//testing/gmock", 42 "//testing/gmock",
42 "//testing/gtest", 43 "//testing/gtest",
43 ] 44 ]
44 } 45 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698