Chromium Code Reviews| 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 334 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 345 ['--enable-accelerated-overflow-scroll']), | 345 ['--enable-accelerated-overflow-scroll']), |
| 346 VirtualTestSuite('virtual/threaded/animations', | 346 VirtualTestSuite('virtual/threaded/animations', |
| 347 'animations', | 347 'animations', |
| 348 ['--enable-threaded-compositing']), | 348 ['--enable-threaded-compositing']), |
| 349 VirtualTestSuite('virtual/threaded/transitions', | 349 VirtualTestSuite('virtual/threaded/transitions', |
| 350 'transitions', | 350 'transitions', |
| 351 ['--enable-threaded-compositing']), | 351 ['--enable-threaded-compositing']), |
| 352 VirtualTestSuite('virtual/web-animations-css/animations', | 352 VirtualTestSuite('virtual/web-animations-css/animations', |
| 353 'animations', | 353 'animations', |
| 354 ['--enable-web-animations-css']), | 354 ['--enable-web-animations-css']), |
| 355 VirtualTestSuite('virtual/webexposed/stable', | |
|
eseidel
2013/08/21 19:28:16
Did you mean for this to be webexposed/stable inst
Dirk Pranke
2013/08/21 21:53:05
This should be "virtual/stable/webexposed". The c
Julien - ping for review
2013/08/21 22:26:06
Sounds good, will be fixed. Thanks for review!
| |
| 356 'webexposed', | |
| 357 ['--stable-release-mode']), | |
| 355 ] | 358 ] |
| 356 | 359 |
| 357 # | 360 # |
| 358 # PROTECTED METHODS | 361 # PROTECTED METHODS |
| 359 # | 362 # |
| 360 # These routines should only be called by other methods in this file | 363 # These routines should only be called by other methods in this file |
| 361 # or any subclasses. | 364 # or any subclasses. |
| 362 # | 365 # |
| 363 | 366 |
| 364 def _build_path(self, *comps): | 367 def _build_path(self, *comps): |
| (...skipping 30 matching lines...) Expand all Loading... | |
| 395 # That's fine because, in this case, we must already be running the | 398 # That's fine because, in this case, we must already be running the |
| 396 # most up-to-date one. | 399 # most up-to-date one. |
| 397 except OSError: | 400 except OSError: |
| 398 pass | 401 pass |
| 399 return True | 402 return True |
| 400 | 403 |
| 401 def _chromium_baseline_path(self, platform): | 404 def _chromium_baseline_path(self, platform): |
| 402 if platform is None: | 405 if platform is None: |
| 403 platform = self.name() | 406 platform = self.name() |
| 404 return self.path_from_webkit_base('LayoutTests', 'platform', platform) | 407 return self.path_from_webkit_base('LayoutTests', 'platform', platform) |
| OLD | NEW |