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..1f4f0ae0e48d58273eaaf8ede345c82f22a75789 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,12 @@ 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.', |
samuong
2015/01/20 22:02:33
nit: can we add one blank line between the copyrig
srawlins
2015/01/22 20:15:58
Done.
|
+ '// This file was generated at (%s) by running:', |
+ '// %s']) % ( |
+ datetime.date.today().year, |
+ datetime.datetime.now().isoformat(' '), |
+ ' '.join(sys.argv)) |
# Write header file. |
externs = [] |