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

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

Issue 376773002: GN: Give static_libs with common names unique output_name (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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 | Annotate | Revision Log
« no previous file with comments | « chrome/common/net/BUILD.gn ('k') | components/autofill/content/common/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 import("//third_party/protobuf/proto_library.gni") 5 import("//third_party/protobuf/proto_library.gni")
6 6
7 # GYP version: components/autofill.gypi:autofill_content_browser 7 # GYP version: components/autofill.gypi:autofill_content_browser
8 static_library("browser") { 8 static_library("browser") {
9 output_name = "autofill_content_browser"
9 sources = [ 10 sources = [
10 "content_autofill_driver.cc", 11 "content_autofill_driver.cc",
11 "content_autofill_driver.h", 12 "content_autofill_driver.h",
12 "request_autocomplete_manager.cc", 13 "request_autocomplete_manager.cc",
13 "request_autocomplete_manager.h", 14 "request_autocomplete_manager.h",
14 "risk/fingerprint.cc", 15 "risk/fingerprint.cc",
15 "risk/fingerprint.h", 16 "risk/fingerprint.h",
16 "wallet/form_field_error.cc", 17 "wallet/form_field_error.cc",
17 "wallet/form_field_error.h", 18 "wallet/form_field_error.h",
18 "wallet/full_wallet.cc", 19 "wallet/full_wallet.cc",
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 69
69 proto_library("risk_proto") { 70 proto_library("risk_proto") {
70 sources = [ 71 sources = [
71 "risk/proto/fingerprint.proto", 72 "risk/proto/fingerprint.proto",
72 ] 73 ]
73 proto_in_dir = "risk/proto" 74 proto_in_dir = "risk/proto"
74 proto_out_dir = "components/autofill/content/browser/risk/proto" 75 proto_out_dir = "components/autofill/content/browser/risk/proto"
75 } 76 }
76 77
77 static_library("test_support") { 78 static_library("test_support") {
79 output_name = "autofill_content_test_support"
78 sources = [ 80 sources = [
79 "wallet/mock_wallet_client.cc", 81 "wallet/mock_wallet_client.cc",
80 "wallet/mock_wallet_client.h", 82 "wallet/mock_wallet_client.h",
81 "wallet/wallet_test_util.cc", 83 "wallet/wallet_test_util.cc",
82 "wallet/wallet_test_util.h", 84 "wallet/wallet_test_util.h",
83 ] 85 ]
84 86
85 deps = [ 87 deps = [
86 "//testing/gmock", 88 "//testing/gmock",
87 ] 89 ]
88 } 90 }
OLDNEW
« no previous file with comments | « chrome/common/net/BUILD.gn ('k') | components/autofill/content/common/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698