summaryrefslogtreecommitdiffstats
path: root/webkit/support/webkit_support.gypi
diff options
context:
space:
mode:
authortkent@chromium.org <tkent@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-05-25 04:55:29 +0000
committertkent@chromium.org <tkent@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-05-25 04:55:29 +0000
commit77513615b068588ddb9c07079f0dc46e35dd3392 (patch)
tree43b7ba4cf472028d5985b39fdd65d21bb86f8b01 /webkit/support/webkit_support.gypi
parent1559f51e06ea7ac7e466338eec69b6a924a10512 (diff)
downloadchromium_src-77513615b068588ddb9c07079f0dc46e35dd3392.zip
chromium_src-77513615b068588ddb9c07079f0dc46e35dd3392.tar.gz
chromium_src-77513615b068588ddb9c07079f0dc46e35dd3392.tar.bz2
Implement resource query of webkit_support for Windows.
The code is almost identical to test_shell_win.cc. But missingImage.gif and textAreaResizeCorner.png are put to PRODUCT_DIR/DumpRenderTree_resources/. BUG=none TEST=none Review URL: http://codereview.chromium.org/2175003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@48126 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/support/webkit_support.gypi')
-rw-r--r--webkit/support/webkit_support.gypi23
1 files changed, 17 insertions, 6 deletions
diff --git a/webkit/support/webkit_support.gypi b/webkit/support/webkit_support.gypi
index 84ad4c0..9e5a358 100644
--- a/webkit/support/webkit_support.gypi
+++ b/webkit/support/webkit_support.gypi
@@ -53,12 +53,23 @@
'<(DEPTH)/webkit/tools/test_shell/test_shell_webmimeregistry_impl.cc',
'<(DEPTH)/webkit/tools/test_shell/test_shell_webmimeregistry_impl.h',
],
- 'copies': [
- {
- 'destination': '<(SHARED_INTERMEDIATE_DIR)/webkit',
- 'files': ['../tools/test_shell/resources/textAreaResizeCorner.png'],
- },
- ]
+ 'conditions': [
+ ['OS=="win"', {
+ 'copies': [{
+ 'destination': '<(PRODUCT_DIR)/DumpRenderTree_resources',
+ 'files': [
+ '../tools/test_shell/resources/missingImage.gif',
+ '../tools/test_shell/resources/textAreaResizeCorner.png',
+ ],
+ }],
+ }],
+ ['OS=="mac"', {
+ 'copies': [{
+ 'destination': '<(SHARED_INTERMEDIATE_DIR)/webkit',
+ 'files': ['../tools/test_shell/resources/textAreaResizeCorner.png'],
+ }],
+ }],
+ ],
},
],
}