Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(36)

Unified Diff: webkit/compositor/copyfiles.py

Issue 10874095: Add target for webkit_compositor_unittests (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix up gyp Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webkit/compositor/compositor_tests.gyp ('k') | webkit/compositor/test/run_all_unittests.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/compositor/copyfiles.py
diff --git a/webkit/compositor/copyfiles.py b/webkit/compositor/copyfiles.py
index 6b94a19ebb7ae896777837b74716bf9cadb9ba2a..ac6041a436fa46407fb81f2f7c6d4ec1525559fd 100644
--- a/webkit/compositor/copyfiles.py
+++ b/webkit/compositor/copyfiles.py
@@ -8,6 +8,7 @@ import re
prefixes = ["../../third_party/WebKit/Source/WebCore/platform/chromium/support",
"../../third_party/WebKit/Source/WebKit/chromium/src",
+ "../../third_party/WebKit/Source/WebKit/chromium/tests",
"../../third_party/WebKit/Source/WebCore/platform"]
def Copy(name):
@@ -60,7 +61,12 @@ def FixCopyrightHeader(filepath):
def Main():
files = Readfile("compositor.gyp")['variables']['webkit_compositor_sources']
for f in files:
- dst =Copy(f)
+ dst = Copy(f)
+ FixCopyrightHeader(dst)
+
+ files = Readfile("compositor.gyp")['variables']['webkit_compositor_tests_sources']
+ for f in files:
+ dst = Copy(f)
FixCopyrightHeader(dst)
if __name__ == '__main__':
« no previous file with comments | « webkit/compositor/compositor_tests.gyp ('k') | webkit/compositor/test/run_all_unittests.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698