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

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: Recommendations Created 4 years, 7 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 1505 matching lines...) Expand 10 before | Expand all | Expand 10 after
1516 ['OS=="linux"', { 1516 ['OS=="linux"', {
1517 'sources': [ 1517 'sources': [
1518 'metrics/serialization/serialization_utils_unittest.cc', 1518 'metrics/serialization/serialization_utils_unittest.cc',
1519 ], 1519 ],
1520 'dependencies': [ 1520 'dependencies': [
1521 'components.gyp:metrics_serialization', 1521 'components.gyp:metrics_serialization',
1522 '../dbus/dbus.gyp:dbus', 1522 '../dbus/dbus.gyp:dbus',
1523 '../device/media_transfer_protocol/media_transfer_protocol.gyp:devic e_media_transfer_protocol', 1523 '../device/media_transfer_protocol/media_transfer_protocol.gyp:devic e_media_transfer_protocol',
1524 ], 1524 ],
1525 }], 1525 }],
1526 ['OS=="linux" and chromeos!=1', {
1527 'sources': [
1528 'os_crypt/os_crypt_mocker_linux.cc',
1529 'os_crypt/os_crypt_mocker_linux.h',
1530 'os_crypt/os_crypt_util_linux_unittest.cc',
1531 ],
1532 'defines': [
1533 'USE_LIBSECRET',
1534 ],
1535 'include_dirs': [
1536 '../third_party/libsecret'
1537 ],
1538 }],
1526 ['OS=="linux" and use_udev==0', { 1539 ['OS=="linux" and use_udev==0', {
1527 'dependencies!': [ 1540 'dependencies!': [
1528 'components.gyp:storage_monitor', 1541 'components.gyp:storage_monitor',
1529 'components.gyp:storage_monitor_test_support', 1542 'components.gyp:storage_monitor_test_support',
1530 ], 1543 ],
1531 'sources/': [ 1544 'sources/': [
1532 ['exclude', '^storage_monitor/'], 1545 ['exclude', '^storage_monitor/'],
1533 ], 1546 ],
1534 }], 1547 }],
1535 ['configuration_policy==1', { 1548 ['configuration_policy==1', {
(...skipping 410 matching lines...) Expand 10 before | Expand all | Expand 10 after
1946 'dependencies': [ 1959 'dependencies': [
1947 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 1960 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
1948 ], 1961 ],
1949 }], 1962 }],
1950 ], 1963 ],
1951 }, 1964 },
1952 ], 1965 ],
1953 }], 1966 }],
1954 ], 1967 ],
1955 } 1968 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698