| Index: tools/grit/flatten_resource.py
|
| diff --git a/tools/grit/grit.py b/tools/grit/flatten_resource.py
|
| similarity index 57%
|
| copy from tools/grit/grit.py
|
| copy to tools/grit/flatten_resource.py
|
| index b17ceb9280bcbcf70a650f6e86c432a3b6c85ee1..f8a507d42dba62114731896865a8cdc65233ed7c 100755
|
| --- a/tools/grit/grit.py
|
| +++ b/tools/grit/flatten_resource.py
|
| @@ -1,5 +1,5 @@
|
| #!/usr/bin/env python
|
| -# Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
| +# Copyright 2016 The Chromium Authors. All rights reserved.
|
| # Use of this source code is governed by a BSD-style license that can be
|
| # found in the LICENSE file.
|
|
|
| @@ -8,9 +8,9 @@
|
|
|
| import sys
|
|
|
| -import grit.grit_runner
|
| +import grit.flatten_resource_runner
|
|
|
|
|
| if __name__ == '__main__':
|
| - grit.grit_runner.Main(sys.argv[1:])
|
| + grit.flatten_resource_runner.Main(sys.argv[1:])
|
|
|
|
|