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

Side by Side Diff: components/components_tests.gyp

Issue 1242323004: Add missing dependencies. (Closed) Base URL: https://chromium.googlesource.com/a/chromium/src.git@master
Patch Set: Fix many new tests Created 5 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 1496 matching lines...) Expand 10 before | Expand all | Expand 10 after
1507 ], 1507 ],
1508 }], 1508 }],
1509 ], 1509 ],
1510 }], 1510 }],
1511 ['test_isolation_mode != "noop"', { 1511 ['test_isolation_mode != "noop"', {
1512 'targets': [ 1512 'targets': [
1513 { 1513 {
1514 'target_name': 'components_unittests_run', 1514 'target_name': 'components_unittests_run',
1515 'type': 'none', 1515 'type': 'none',
1516 'dependencies': [ 1516 'dependencies': [
1517 '../third_party/mesa/mesa.gyp:osmesa',
1517 'components_unittests', 1518 'components_unittests',
1518 ], 1519 ],
1519 'includes': [ 1520 'includes': [
1520 '../build/isolate.gypi', 1521 '../build/isolate.gypi',
1521 ], 1522 ],
1522 'sources': [ 1523 'sources': [
1523 'components_unittests.isolate', 1524 'components_unittests.isolate',
1524 ], 1525 ],
1525 'conditions': [ 1526 'conditions': [
1526 ['use_x11==1', { 1527 ['use_x11==1', {
1527 'dependencies': [ 1528 'dependencies': [
1528 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 1529 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
1529 ], 1530 ],
1530 }], 1531 }],
1531 ], 1532 ],
1532 }, 1533 },
1533 ], 1534 ],
1534 }], 1535 }],
1535 ['OS == "android"', { 1536 ['OS == "android"', {
1536 'targets': [ 1537 'targets': [
1537 { 1538 {
1538 'target_name': 'components_unittests_apk', 1539 'target_name': 'components_unittests_apk',
1539 'isolate_file': 'components_unittests.isolate', 1540 'isolate_file': 'components_unittests.isolate',
1540 'type': 'none', 1541 'type': 'none',
1541 'dependencies': [ 1542 'dependencies': [
1543 '../third_party/mesa/mesa.gyp:osmesa',
1544 'components.gyp:invalidation_java',
1542 'components_unittests', 1545 'components_unittests',
1543 'components.gyp:invalidation_java',
1544 ], 1546 ],
1545 'variables': { 1547 'variables': {
1546 'test_suite_name': 'components_unittests', 1548 'test_suite_name': 'components_unittests',
1547 }, 1549 },
1548 'includes': [ '../build/apk_test.gypi' ], 1550 'includes': [ '../build/apk_test.gypi' ],
1549 }, 1551 },
1550 ], 1552 ],
1551 }], 1553 }],
1552 ], 1554 ],
1553 } 1555 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698