| OLD | NEW |
| 1 # Copyright (C) 2010 Google Inc. All rights reserved. | 1 # Copyright (C) 2010 Google Inc. All rights reserved. |
| 2 # | 2 # |
| 3 # Redistribution and use in source and binary forms, with or without | 3 # Redistribution and use in source and binary forms, with or without |
| 4 # modification, are permitted provided that the following conditions are | 4 # modification, are permitted provided that the following conditions are |
| 5 # met: | 5 # met: |
| 6 # | 6 # |
| 7 # * Redistributions of source code must retain the above copyright | 7 # * Redistributions of source code must retain the above copyright |
| 8 # notice, this list of conditions and the following disclaimer. | 8 # notice, this list of conditions and the following disclaimer. |
| 9 # * Redistributions in binary form must reproduce the above | 9 # * Redistributions in binary form must reproduce the above |
| 10 # copyright notice, this list of conditions and the following disclaimer | 10 # copyright notice, this list of conditions and the following disclaimer |
| (...skipping 332 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 343 ['--enable-accelerated-overflow-scroll']), | 343 ['--enable-accelerated-overflow-scroll']), |
| 344 VirtualTestSuite('virtual/threaded/animations', | 344 VirtualTestSuite('virtual/threaded/animations', |
| 345 'animations', | 345 'animations', |
| 346 ['--enable-threaded-compositing']), | 346 ['--enable-threaded-compositing']), |
| 347 VirtualTestSuite('virtual/threaded/transitions', | 347 VirtualTestSuite('virtual/threaded/transitions', |
| 348 'transitions', | 348 'transitions', |
| 349 ['--enable-threaded-compositing']), | 349 ['--enable-threaded-compositing']), |
| 350 VirtualTestSuite('virtual/web-animations-css/animations', | 350 VirtualTestSuite('virtual/web-animations-css/animations', |
| 351 'animations', | 351 'animations', |
| 352 ['--enable-web-animations-css']), | 352 ['--enable-web-animations-css']), |
| 353 VirtualTestSuite('virtual/stable/webexposed', |
| 354 'webexposed', |
| 355 ['--stable-release-mode']), |
| 353 ] | 356 ] |
| 354 | 357 |
| 355 # | 358 # |
| 356 # PROTECTED METHODS | 359 # PROTECTED METHODS |
| 357 # | 360 # |
| 358 # These routines should only be called by other methods in this file | 361 # These routines should only be called by other methods in this file |
| 359 # or any subclasses. | 362 # or any subclasses. |
| 360 # | 363 # |
| 361 | 364 |
| 362 def _build_path(self, *comps): | 365 def _build_path(self, *comps): |
| (...skipping 30 matching lines...) Expand all Loading... |
| 393 # That's fine because, in this case, we must already be running the | 396 # That's fine because, in this case, we must already be running the |
| 394 # most up-to-date one. | 397 # most up-to-date one. |
| 395 except OSError: | 398 except OSError: |
| 396 pass | 399 pass |
| 397 return True | 400 return True |
| 398 | 401 |
| 399 def _chromium_baseline_path(self, platform): | 402 def _chromium_baseline_path(self, platform): |
| 400 if platform is None: | 403 if platform is None: |
| 401 platform = self.name() | 404 platform = self.name() |
| 402 return self.path_from_webkit_base('LayoutTests', 'platform', platform) | 405 return self.path_from_webkit_base('LayoutTests', 'platform', platform) |
| OLD | NEW |