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

Unified Diff: components/encryptor.gypi

Issue 183953005: Rename components's Encryptor to OSEncrypt. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: components/encryptor.gypi
diff --git a/components/encryptor.gypi b/components/encryptor.gypi
index 3ddc7a132918ff3d8e1446f8a28f6d1d4df99818..c4bb1f8ddf31079a595dc461b0b08470bfe560fb 100644
--- a/components/encryptor.gypi
+++ b/components/encryptor.gypi
@@ -15,29 +15,29 @@
'../crypto/crypto.gyp:crypto',
],
'sources': [
- 'encryptor/encryptor.h',
- 'encryptor/encryptor_mac.mm',
'encryptor/encryptor_password_mac.h',
'encryptor/encryptor_password_mac.mm',
- 'encryptor/encryptor_posix.cc',
'encryptor/encryptor_switches.cc',
'encryptor/encryptor_switches.h',
- 'encryptor/encryptor_win.cc',
'encryptor/ie7_password_win.cc',
'encryptor/ie7_password_win.h',
+ 'encryptor/os_crypt.h',
+ 'encryptor/os_crypt_mac.mm',
+ 'encryptor/os_crypt_posix.cc',
+ 'encryptor/os_crypt_win.cc',
],
'conditions': [
['OS=="mac"', {
'sources!': [
- 'encryptor/encryptor_posix.cc',
+ 'encryptor/os_crypt_posix.cc',
],
}],
],
'target_conditions': [
['OS=="ios"', {
'sources/': [
- ['include', '^encryptor/encryptor_mac\\.mm$'],
['include', '^encryptor/encryptor_password_mac\\.mm$'],
+ ['include', '^encryptor/os_crypt_mac\\.mm$'],
],
}],
],

Powered by Google App Engine
This is Rietveld 408576698