OLD | NEW |
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'targets': [ | 9 'targets': [ |
10 { | 10 { |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
46 '<(DEPTH)/webkit/tools/test_shell/simple_socket_stream_bridge.cc', | 46 '<(DEPTH)/webkit/tools/test_shell/simple_socket_stream_bridge.cc', |
47 '<(DEPTH)/webkit/tools/test_shell/simple_socket_stream_bridge.h', | 47 '<(DEPTH)/webkit/tools/test_shell/simple_socket_stream_bridge.h', |
48 '<(DEPTH)/webkit/tools/test_shell/simple_webcookiejar_impl.cc', | 48 '<(DEPTH)/webkit/tools/test_shell/simple_webcookiejar_impl.cc', |
49 '<(DEPTH)/webkit/tools/test_shell/simple_webcookiejar_impl.h', | 49 '<(DEPTH)/webkit/tools/test_shell/simple_webcookiejar_impl.h', |
50 '<(DEPTH)/webkit/tools/test_shell/test_shell_request_context.cc', | 50 '<(DEPTH)/webkit/tools/test_shell/test_shell_request_context.cc', |
51 '<(DEPTH)/webkit/tools/test_shell/test_shell_request_context.h', | 51 '<(DEPTH)/webkit/tools/test_shell/test_shell_request_context.h', |
52 '<(DEPTH)/webkit/tools/test_shell/test_shell_webmimeregistry_impl.cc', | 52 '<(DEPTH)/webkit/tools/test_shell/test_shell_webmimeregistry_impl.cc', |
53 '<(DEPTH)/webkit/tools/test_shell/test_shell_webmimeregistry_impl.h', | 53 '<(DEPTH)/webkit/tools/test_shell/test_shell_webmimeregistry_impl.h', |
54 ], | 54 ], |
55 'conditions': [ | 55 'conditions': [ |
56 ['OS=="win"', { | 56 ['OS=="mac"', { |
| 57 'copies': [{ |
| 58 'destination': '<(SHARED_INTERMEDIATE_DIR)/webkit', |
| 59 'files': ['../tools/test_shell/resources/textAreaResizeCorner.png'], |
| 60 }], |
| 61 },{ # OS!="mac" |
57 'copies': [{ | 62 'copies': [{ |
58 'destination': '<(PRODUCT_DIR)/DumpRenderTree_resources', | 63 'destination': '<(PRODUCT_DIR)/DumpRenderTree_resources', |
59 'files': [ | 64 'files': [ |
60 '../tools/test_shell/resources/missingImage.gif', | 65 '../tools/test_shell/resources/missingImage.gif', |
61 '../tools/test_shell/resources/textAreaResizeCorner.png', | 66 '../tools/test_shell/resources/textAreaResizeCorner.png', |
62 ], | 67 ], |
63 }], | 68 }], |
64 }], | 69 }], |
65 ['OS=="mac"', { | |
66 'copies': [{ | |
67 'destination': '<(SHARED_INTERMEDIATE_DIR)/webkit', | |
68 'files': ['../tools/test_shell/resources/textAreaResizeCorner.png'], | |
69 }], | |
70 }], | |
71 ], | 70 ], |
72 }, | 71 }, |
73 ], | 72 ], |
74 } | 73 } |
75 # Local Variables: | 74 # Local Variables: |
76 # tab-width:2 | 75 # tab-width:2 |
77 # indent-tabs-mode:nil | 76 # indent-tabs-mode:nil |
78 # End: | 77 # End: |
79 # vim: set expandtab tabstop=2 shiftwidth=2: | 78 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |