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

Side by Side Diff: components/components_tests.gyp

Issue 1973483002: OSCrypt for POSIX uses libsecret to store a randomised encryption key. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed asan Created 4 years, 6 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 1509 matching lines...) Expand 10 before | Expand all | Expand 10 after
1520 ['OS=="linux"', { 1520 ['OS=="linux"', {
1521 'sources': [ 1521 'sources': [
1522 'metrics/serialization/serialization_utils_unittest.cc', 1522 'metrics/serialization/serialization_utils_unittest.cc',
1523 ], 1523 ],
1524 'dependencies': [ 1524 'dependencies': [
1525 'components.gyp:metrics_serialization', 1525 'components.gyp:metrics_serialization',
1526 '../dbus/dbus.gyp:dbus', 1526 '../dbus/dbus.gyp:dbus',
1527 '../device/media_transfer_protocol/media_transfer_protocol.gyp:devic e_media_transfer_protocol', 1527 '../device/media_transfer_protocol/media_transfer_protocol.gyp:devic e_media_transfer_protocol',
1528 ], 1528 ],
1529 }], 1529 }],
1530 ['OS=="linux" and chromeos!=1', {
1531 'sources': [
1532 'os_crypt/os_crypt_linux_unittest.cc',
1533 'os_crypt/os_crypt_mocker_linux.cc',
1534 'os_crypt/os_crypt_mocker_linux.h',
1535 'os_crypt/os_crypt_util_linux_unittest.cc',
1536 ],
1537 'defines': [
1538 'USE_LIBSECRET',
1539 ],
1540 'include_dirs': [
1541 '../third_party/libsecret'
1542 ],
1543 }],
1530 ['OS=="linux" and use_udev==0', { 1544 ['OS=="linux" and use_udev==0', {
1531 'dependencies!': [ 1545 'dependencies!': [
1532 'components.gyp:storage_monitor', 1546 'components.gyp:storage_monitor',
1533 'components.gyp:storage_monitor_test_support', 1547 'components.gyp:storage_monitor_test_support',
1534 ], 1548 ],
1535 'sources/': [ 1549 'sources/': [
1536 ['exclude', '^storage_monitor/'], 1550 ['exclude', '^storage_monitor/'],
1537 ], 1551 ],
1538 }], 1552 }],
1539 ['configuration_policy==1', { 1553 ['configuration_policy==1', {
(...skipping 410 matching lines...) Expand 10 before | Expand all | Expand 10 after
1950 'dependencies': [ 1964 'dependencies': [
1951 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 1965 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
1952 ], 1966 ],
1953 }], 1967 }],
1954 ], 1968 ],
1955 }, 1969 },
1956 ], 1970 ],
1957 }], 1971 }],
1958 ], 1972 ],
1959 } 1973 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698