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

Side by Side Diff: components/components_tests.gyp

Issue 2150543002: OSCrypt supports encryption with KWallet (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixed build 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
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 'variables': { 6 'variables': {
7 # This turns on e.g. the filename-based detection of which 7 # This turns on e.g. the filename-based detection of which
8 # platforms to include source files on (e.g. files ending in 8 # platforms to include source files on (e.g. files ending in
9 # _mac.h or _mac.cc are only compiled on MacOSX). 9 # _mac.h or _mac.cc are only compiled on MacOSX).
10 'chromium_code': 1, 10 'chromium_code': 1,
(...skipping 1571 matching lines...) Expand 10 before | Expand all | Expand 10 after
1582 ], 1582 ],
1583 'dependencies': [ 1583 'dependencies': [
1584 'components.gyp:metrics_serialization', 1584 'components.gyp:metrics_serialization',
1585 '../dbus/dbus.gyp:dbus', 1585 '../dbus/dbus.gyp:dbus',
1586 '../device/media_transfer_protocol/media_transfer_protocol.gyp:devic e_media_transfer_protocol', 1586 '../device/media_transfer_protocol/media_transfer_protocol.gyp:devic e_media_transfer_protocol',
1587 ], 1587 ],
1588 }], 1588 }],
1589 ['OS=="linux" and chromeos!=1', { 1589 ['OS=="linux" and chromeos!=1', {
1590 'sources': [ 1590 'sources': [
1591 'os_crypt/kwallet_dbus_unittest.cc', 1591 'os_crypt/kwallet_dbus_unittest.cc',
1592 'os_crypt/key_storage_kwallet_unittest.cc',
Lei Zhang 2016/07/20 01:08:26 alphabetical order please
cfroussios 2016/07/20 15:22:46 Done.
1592 'os_crypt/os_crypt_linux_unittest.cc', 1593 'os_crypt/os_crypt_linux_unittest.cc',
1593 'os_crypt/os_crypt_util_linux_unittest.cc', 1594 'os_crypt/os_crypt_util_linux_unittest.cc',
1594 ], 1595 ],
1595 'defines': [ 1596 'defines': [
1596 'USE_KWALLET', 1597 'USE_KWALLET',
1597 'USE_LIBSECRET', 1598 'USE_LIBSECRET',
1598 ], 1599 ],
1599 'include_dirs': [ 1600 'include_dirs': [
1600 '../third_party/libsecret' 1601 '../third_party/libsecret'
1601 ], 1602 ],
(...skipping 427 matching lines...) Expand 10 before | Expand all | Expand 10 after
2029 'dependencies': [ 2030 'dependencies': [
2030 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 2031 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
2031 ], 2032 ],
2032 }], 2033 }],
2033 ], 2034 ],
2034 }, 2035 },
2035 ], 2036 ],
2036 }], 2037 }],
2037 ], 2038 ],
2038 } 2039 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698