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
3 # found in the LICENSE file.
6 def GetAllPageSetFilenames():
8 start_dir
= os
.path
.dirname(__file__
)
9 for dirpath
, _
, filenames
in os
.walk(start_dir
):
11 if os
.path
.splitext(f
)[1] != '.json':
13 filename
= os
.path
.join(dirpath
, f
)
14 results
.append(filename
)