| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 'defines': [ | 47 'defines': [ |
| 48 # Technically not a unit test but require functions available only to | 48 # Technically not a unit test but require functions available only to |
| 49 # unit tests. | 49 # unit tests. |
| 50 'UNIT_TEST' | 50 'UNIT_TEST' |
| 51 ], | 51 ], |
| 52 'sources': [ | 52 'sources': [ |
| 53 'drt_application_mac.h', | 53 'drt_application_mac.h', |
| 54 'drt_application_mac.mm', | 54 'drt_application_mac.mm', |
| 55 'gc_extension.cc', | 55 'gc_extension.cc', |
| 56 'gc_extension.h', | 56 'gc_extension.h', |
| 57 'platform_support.h', | |
| 58 'platform_support_android.cc', | |
| 59 'platform_support_linux.cc', | |
| 60 'platform_support_mac.mm', | |
| 61 'platform_support_win.cc', | |
| 62 'test_webkit_platform_support.cc', | 57 'test_webkit_platform_support.cc', |
| 63 'test_webkit_platform_support.h', | 58 'test_webkit_platform_support.h', |
| 64 'test_webmessageportchannel.cc', | 59 'test_webmessageportchannel.cc', |
| 65 'test_webmessageportchannel.h', | 60 'test_webmessageportchannel.h', |
| 66 'test_webplugin_page_delegate.cc', | 61 'test_webplugin_page_delegate.cc', |
| 67 'test_webplugin_page_delegate.h', | 62 'test_webplugin_page_delegate.h', |
| 68 'webkit_support.cc', | 63 'webkit_support.cc', |
| 69 'webkit_support.h', | 64 'webkit_support.h', |
| 70 'webkit_support_glue.cc', | 65 'webkit_support_glue.cc', |
| 71 'weburl_loader_mock.cc', | 66 'weburl_loader_mock.cc', |
| 72 'weburl_loader_mock.h', | 67 'weburl_loader_mock.h', |
| 73 'weburl_loader_mock_factory.cc', | 68 'weburl_loader_mock_factory.cc', |
| 74 'weburl_loader_mock_factory.h', | 69 'weburl_loader_mock_factory.h', |
| 75 'web_audio_device_mock.cc', | 70 'web_audio_device_mock.cc', |
| 76 'web_audio_device_mock.h', | 71 'web_audio_device_mock.h', |
| 77 'web_gesture_curve_mock.cc', | 72 'web_gesture_curve_mock.cc', |
| 78 'web_gesture_curve_mock.h', | 73 'web_gesture_curve_mock.h', |
| 79 'web_layer_tree_view_impl_for_testing.cc', | 74 'web_layer_tree_view_impl_for_testing.cc', |
| 80 'web_layer_tree_view_impl_for_testing.h', | 75 'web_layer_tree_view_impl_for_testing.h', |
| 81 ], | 76 ], |
| 82 'conditions': [ | |
| 83 ['OS=="mac"', { | |
| 84 'copies': [{ | |
| 85 'destination': '<(SHARED_INTERMEDIATE_DIR)/webkit', | |
| 86 'files': [ | |
| 87 '../tools/test_shell/resources/missingImage.png', | |
| 88 '../tools/test_shell/resources/textAreaResizeCorner.png', | |
| 89 ], | |
| 90 }], | |
| 91 },{ # OS!="mac" | |
| 92 'copies': [{ | |
| 93 'destination': '<(PRODUCT_DIR)/DumpRenderTree_resources', | |
| 94 'files': [ | |
| 95 '../tools/test_shell/resources/missingImage.gif', | |
| 96 '../tools/test_shell/resources/textAreaResizeCorner.png', | |
| 97 ], | |
| 98 }], | |
| 99 }], | |
| 100 ], | |
| 101 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 77 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 102 'msvs_disabled_warnings': [ 4267, ], | 78 'msvs_disabled_warnings': [ 4267, ], |
| 103 }, | 79 }, |
| 104 | 80 |
| 105 { | 81 { |
| 106 'target_name': 'webkit_support_common', | 82 'target_name': 'webkit_support_common', |
| 107 'type': 'static_library', | 83 'type': 'static_library', |
| 108 'variables': { 'enable_wexit_time_destructors': 1, }, | 84 'variables': { 'enable_wexit_time_destructors': 1, }, |
| 109 'dependencies': [ | 85 'dependencies': [ |
| 110 '<(DEPTH)/base/base.gyp:base', | 86 '<(DEPTH)/base/base.gyp:base', |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 178 '<(DEPTH)', | 154 '<(DEPTH)', |
| 179 ], | 155 ], |
| 180 'conditions': [ | 156 'conditions': [ |
| 181 ['OS=="android"', { | 157 ['OS=="android"', { |
| 182 'toolsets': ['target', 'host'], | 158 'toolsets': ['target', 'host'], |
| 183 }], | 159 }], |
| 184 ], | 160 ], |
| 185 }, | 161 }, |
| 186 ], | 162 ], |
| 187 } | 163 } |
| OLD | NEW |