| 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 518 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 529 ], | 529 ], |
| 530 'conditions': [ | 530 'conditions': [ |
| 531 ['OS != "android"', { | 531 ['OS != "android"', { |
| 532 'sources': [ | 532 'sources': [ |
| 533 'sessions/session_backend_unittest.cc', | 533 'sessions/session_backend_unittest.cc', |
| 534 ], | 534 ], |
| 535 }], | 535 }], |
| 536 ], | 536 ], |
| 537 }, { # 'OS == "ios"' | 537 }, { # 'OS == "ios"' |
| 538 'sources': [ | 538 'sources': [ |
| 539 'open_from_clipboard/clipboard_recent_content_ios_unittest.mm', |
| 539 'webp_transcode/webp_decoder_unittest.mm', | 540 'webp_transcode/webp_decoder_unittest.mm', |
| 540 ], | 541 ], |
| 541 'sources/': [ | 542 'sources/': [ |
| 542 # First start by excluding all tests on iOS. | 543 # First start by excluding all tests on iOS. |
| 543 ['exclude', '\\.cc$'], | 544 ['exclude', '\\.cc$'], |
| 544 ['exclude', '\\.mm$'], | 545 ['exclude', '\\.mm$'], |
| 545 | 546 |
| 546 # Include the test runner. | 547 # Include the test runner. |
| 547 ['include', '^test/run_all_unittests\\.cc$'], | 548 ['include', '^test/run_all_unittests\\.cc$'], |
| 548 | 549 |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 618 ['exclude', '^signin/core/browser/mutable_profile_oauth2_token_s
ervice_unittest\\.cc$'], | 619 ['exclude', '^signin/core/browser/mutable_profile_oauth2_token_s
ervice_unittest\\.cc$'], |
| 619 | 620 |
| 620 # Exclude all tests that depends on //content (based on layered- | 621 # Exclude all tests that depends on //content (based on layered- |
| 621 # component directory structure). | 622 # component directory structure). |
| 622 ['exclude', '^[^/]*/content/'], | 623 ['exclude', '^[^/]*/content/'], |
| 623 ], | 624 ], |
| 624 'dependencies': [ | 625 'dependencies': [ |
| 625 '../ios/ios_tests.gyp:test_support_ios', | 626 '../ios/ios_tests.gyp:test_support_ios', |
| 626 '../ios/web/ios_web.gyp:test_support_ios_web', | 627 '../ios/web/ios_web.gyp:test_support_ios_web', |
| 627 '../third_party/ocmock/ocmock.gyp:ocmock', | 628 '../third_party/ocmock/ocmock.gyp:ocmock', |
| 629 'components.gyp:open_from_clipboard', |
| 628 'components.gyp:sessions_ios', | 630 'components.gyp:sessions_ios', |
| 629 'components.gyp:signin_ios_browser', | 631 'components.gyp:signin_ios_browser', |
| 630 'components.gyp:translate_ios_browser', | 632 'components.gyp:translate_ios_browser', |
| 631 'components.gyp:webp_transcode', | 633 'components.gyp:webp_transcode', |
| 632 ], | 634 ], |
| 633 'actions': [ | 635 'actions': [ |
| 634 { | 636 { |
| 635 'action_name': 'copy_test_data', | 637 'action_name': 'copy_test_data', |
| 636 'variables': { | 638 'variables': { |
| 637 'test_data_files': [ | 639 'test_data_files': [ |
| (...skipping 477 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1115 '../build/isolate.gypi', | 1117 '../build/isolate.gypi', |
| 1116 ], | 1118 ], |
| 1117 'sources': [ | 1119 'sources': [ |
| 1118 'components_unittests.isolate', | 1120 'components_unittests.isolate', |
| 1119 ], | 1121 ], |
| 1120 }, | 1122 }, |
| 1121 ], | 1123 ], |
| 1122 }], | 1124 }], |
| 1123 ], | 1125 ], |
| 1124 } | 1126 } |
| OLD | NEW |