OLD | NEW |
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 1517 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1528 ['OS=="linux"', { | 1528 ['OS=="linux"', { |
1529 'sources': [ | 1529 'sources': [ |
1530 'metrics/serialization/serialization_utils_unittest.cc', | 1530 'metrics/serialization/serialization_utils_unittest.cc', |
1531 ], | 1531 ], |
1532 'dependencies': [ | 1532 'dependencies': [ |
1533 'components.gyp:metrics_serialization', | 1533 'components.gyp:metrics_serialization', |
1534 '../dbus/dbus.gyp:dbus', | 1534 '../dbus/dbus.gyp:dbus', |
1535 '../device/media_transfer_protocol/media_transfer_protocol.gyp:devic
e_media_transfer_protocol', | 1535 '../device/media_transfer_protocol/media_transfer_protocol.gyp:devic
e_media_transfer_protocol', |
1536 ], | 1536 ], |
1537 }], | 1537 }], |
| 1538 ['OS=="linux" and chromeos!=1', { |
| 1539 'sources': [ |
| 1540 'os_crypt/os_crypt_linux_unittest.cc', |
| 1541 'os_crypt/os_crypt_util_linux_unittest.cc', |
| 1542 ], |
| 1543 'defines': [ |
| 1544 'USE_LIBSECRET', |
| 1545 ], |
| 1546 'include_dirs': [ |
| 1547 '../third_party/libsecret' |
| 1548 ], |
| 1549 }], |
1538 ['OS=="linux" and use_udev==0', { | 1550 ['OS=="linux" and use_udev==0', { |
1539 'dependencies!': [ | 1551 'dependencies!': [ |
1540 'components.gyp:storage_monitor', | 1552 'components.gyp:storage_monitor', |
1541 'components.gyp:storage_monitor_test_support', | 1553 'components.gyp:storage_monitor_test_support', |
1542 ], | 1554 ], |
1543 'sources/': [ | 1555 'sources/': [ |
1544 ['exclude', '^storage_monitor/'], | 1556 ['exclude', '^storage_monitor/'], |
1545 ], | 1557 ], |
1546 }], | 1558 }], |
1547 ['configuration_policy==1', { | 1559 ['configuration_policy==1', { |
(...skipping 410 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1958 'dependencies': [ | 1970 'dependencies': [ |
1959 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', | 1971 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', |
1960 ], | 1972 ], |
1961 }], | 1973 }], |
1962 ], | 1974 ], |
1963 }, | 1975 }, |
1964 ], | 1976 ], |
1965 }], | 1977 }], |
1966 ], | 1978 ], |
1967 } | 1979 } |
OLD | NEW |