| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 }, | 8 }, |
| 9 'includes': [ | 9 'includes': [ |
| 10 '../build/win_precompile.gypi', | 10 '../build/win_precompile.gypi', |
| (...skipping 583 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 594 'dependencies': [ | 594 'dependencies': [ |
| 595 'android/jni_generator/jni_generator.gyp:jni_generator_tests', | 595 'android/jni_generator/jni_generator.gyp:jni_generator_tests', |
| 596 ], | 596 ], |
| 597 'conditions': [ | 597 'conditions': [ |
| 598 ['gtest_target_type == "shared_library"', { | 598 ['gtest_target_type == "shared_library"', { |
| 599 'dependencies': [ | 599 'dependencies': [ |
| 600 '../testing/android/native_test.gyp:native_test_native_code', | 600 '../testing/android/native_test.gyp:native_test_native_code', |
| 601 ], | 601 ], |
| 602 }], | 602 }], |
| 603 ], | 603 ], |
| 604 'sources!': [ |
| 605 # Broken on Android, and already disabled there. |
| 606 'debug/stack_trace_unittest.cc', |
| 607 ], |
| 604 }], | 608 }], |
| 605 ['OS == "ios"', { | 609 ['OS == "ios"', { |
| 606 'sources/': [ | 610 'sources/': [ |
| 607 # Only test the iOS-meaningful portion of process_utils. | 611 # Only test the iOS-meaningful portion of process_utils. |
| 608 ['exclude', '^process_util_unittest'], | 612 ['exclude', '^process_util_unittest'], |
| 609 ['include', '^process_util_unittest_ios\\.cc$'], | 613 ['include', '^process_util_unittest_ios\\.cc$'], |
| 610 # Requires spawning processes. | 614 # Requires spawning processes. |
| 611 ['exclude', '^metrics/stats_table_unittest\\.cc$'], | 615 ['exclude', '^metrics/stats_table_unittest\\.cc$'], |
| 612 # TODO(ios): Remove these as base/ is unforked. | 616 # TODO(ios): Remove these as base/ is unforked. |
| 613 # For now, exclude everything that doesn't build as-is, just to | 617 # For now, exclude everything that doesn't build as-is, just to |
| (...skipping 481 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1095 'base_unittests.isolate', | 1099 'base_unittests.isolate', |
| 1096 ], | 1100 ], |
| 1097 'sources': [ | 1101 'sources': [ |
| 1098 'base_unittests.isolate', | 1102 'base_unittests.isolate', |
| 1099 ], | 1103 ], |
| 1100 }, | 1104 }, |
| 1101 ], | 1105 ], |
| 1102 }], | 1106 }], |
| 1103 ], | 1107 ], |
| 1104 } | 1108 } |
| OLD | NEW |