| 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 import os | 4 import os |
| 5 import shlex | 5 import shlex |
| 6 | 6 |
| 7 from core import path_util | 7 from core import path_util |
| 8 from core import perf_benchmark | 8 from core import perf_benchmark |
| 9 from page_sets import google_pages | 9 from page_sets import google_pages |
| 10 | 10 |
| (...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 219 path_util.GetPerfStorySetsDir(), 'data', 'v8_pages.json'), | 219 path_util.GetPerfStorySetsDir(), 'data', 'v8_pages.json'), |
| 220 cloud_storage_bucket=story.PARTNER_BUCKET) | 220 cloud_storage_bucket=story.PARTNER_BUCKET) |
| 221 story_set.AddStory(google_pages.AdwordCampaignDesktopPage(story_set)) | 221 story_set.AddStory(google_pages.AdwordCampaignDesktopPage(story_set)) |
| 222 return story_set | 222 return story_set |
| 223 | 223 |
| 224 @classmethod | 224 @classmethod |
| 225 def Name(cls): | 225 def Name(cls): |
| 226 return 'v8.google' | 226 return 'v8.google' |
| 227 | 227 |
| 228 @classmethod | 228 @classmethod |
| 229 def ShouldDisable(cls, possible_browser): |
| 230 return cls.IsSvelte(possible_browser) # http://crbug.com/596556 |
| 231 |
| 232 @classmethod |
| 229 def ShouldTearDownStateAfterEachStoryRun(cls): | 233 def ShouldTearDownStateAfterEachStoryRun(cls): |
| 230 return True | 234 return True |
| OLD | NEW |