| Index: chrome/test/chromedriver/cpp_source.py
|
| diff --git a/chrome/test/chromedriver/cpp_source.py b/chrome/test/chromedriver/cpp_source.py
|
| index 498fd2549ab88cac0ca19f8c96ce8dfe76e98093..c91eca956e81d8410660e0156a83567ce7226172 100644
|
| --- a/chrome/test/chromedriver/cpp_source.py
|
| +++ b/chrome/test/chromedriver/cpp_source.py
|
| @@ -6,6 +6,7 @@
|
|
|
| import datetime
|
| import os
|
| +import sys
|
|
|
|
|
| def WriteSource(base_name,
|
| @@ -26,7 +27,13 @@ def WriteSource(base_name,
|
| '// Copyright %s 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.']) % datetime.date.today().year
|
| + '// found in the LICENSE file.',
|
| + '',
|
| + '// This file was generated at (%s) by running:',
|
| + '// %s']) % (
|
| + datetime.date.today().year,
|
| + datetime.datetime.now().isoformat(' '),
|
| + ' '.join(sys.argv))
|
|
|
| # Write header file.
|
| externs = []
|
|
|