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

Side by Side Diff: components/password_manager.gypi

Issue 192633002: Move ContentAutofillDriver to the PasswordManager component. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 9 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/chrome_browser.gypi ('k') | components/password_manager/content/DEPS » ('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 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'password_manager_core_browser', 8 'target_name': 'password_manager_core_browser',
9 'type': 'static_library', 9 'type': 'static_library',
10 'dependencies': [ 10 'dependencies': [
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 '..', 117 '..',
118 ], 118 ],
119 'sources': [ 119 'sources': [
120 'password_manager/core/common/password_manager_pref_names.cc', 120 'password_manager/core/common/password_manager_pref_names.cc',
121 'password_manager/core/common/password_manager_pref_names.h', 121 'password_manager/core/common/password_manager_pref_names.h',
122 'password_manager/core/common/password_manager_switches.cc', 122 'password_manager/core/common/password_manager_switches.cc',
123 'password_manager/core/common/password_manager_switches.h', 123 'password_manager/core/common/password_manager_switches.h',
124 ], 124 ],
125 }, 125 },
126 ], 126 ],
127 'conditions': [
128 ['OS != "ios"', {
129 'targets': [
130 {
131 'target_name': 'password_manager_content_browser',
132 'type': 'static_library',
133 'dependencies': [
134 'autofill_content_browser',
135 'autofill_content_common',
136 'autofill_core_common',
137 'password_manager_core_browser',
138 '../base/base.gyp:base',
139 '../content/content.gyp:content_browser',
140 '../content/content.gyp:content_common',
141 '../ipc/ipc.gyp:ipc',
142 '../net/net.gyp:net',
143 ],
144 'include_dirs': [
145 '..',
146 ],
147 'sources': [
148 'password_manager/content/browser/content_password_manager_driver.cc ',
149 'password_manager/content/browser/content_password_manager_driver.h' ,
150 ],
151 },
152 ],
153 }],
154 ],
127 } 155 }
OLDNEW
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | components/password_manager/content/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698