Changeset 139895 in webkit
- Timestamp:
- Jan 16, 2013, 10:37:48 AM (12 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit/chromium/ChangeLog
r139856 r139895 1 2013-01-16 Chris Hopman <cjhopman@chromium.org> 2 3 [Chromium] Remove hardcoded chromium_*.jar in gyp files 4 https://bugs.webkit.org/show_bug.cgi?id=104049 5 6 Reviewed by Eric Seidel. 7 8 Targets with dependencies (direct/indirect) on a java target receive 9 the chromium_*.jar paths in the variable input_jars_paths. Targets 10 should use that rather than hardcoding where they think the jar will 11 be. These can be passed directly to ant as INPUT_JARS_PATHS rather 12 than as --jars to generate_native_test.py. 13 14 * WebKitUnitTests.gyp: 15 1 16 2013-01-16 Dominic Cooney <dominicc@chromium.org> 2 17 -
trunk/Source/WebKit/chromium/WebKitUnitTests.gyp
r138044 r139895 151 151 'variables': { 152 152 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)webkit_unit_tests<(SHARED_LIB_SUFFIX)', 153 'input_jars_paths': [154 '<(PRODUCT_DIR)/lib.java/chromium_base.jar',155 '<(PRODUCT_DIR)/lib.java/chromium_net.jar',156 ],157 153 'conditions': [ 158 154 ['inside_chromium_build==1', { … … 182 178 '--native_library', 183 179 '<(input_shlib_path)', 184 '--jars',185 '">@(input_jars_paths)"',186 180 '--output', 187 181 '<(PRODUCT_DIR)/webkit_unit_tests_apk', … … 205 199 '--ant-args', 206 200 '-DCHROMIUM_SRC=<(ant_build_to_chromium_src)', 201 '--ant-args', 202 '-DINPUT_JARS_PATHS=>@(input_jars_paths)', 207 203 '--app_abi', 208 204 '<(android_app_abi)', -
trunk/Tools/ChangeLog
r139875 r139895 1 2013-01-16 Chris Hopman <cjhopman@chromium.org> 2 3 [Chromium] Remove hardcoded chromium_*.jar in gyp files 4 https://bugs.webkit.org/show_bug.cgi?id=104049 5 6 Reviewed by Eric Seidel. 7 8 Targets with dependencies (direct/indirect) on a java target receive 9 the chromium_*.jar paths in the variable input_jars_paths. Targets 10 should use that rather than hardcoding where they think the jar will 11 be. These can be passed directly to ant as INPUT_JARS_PATHS rather 12 than as --jars to generate_native_test.py. 13 14 * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp: 15 * TestWebKitAPI/TestWebKitAPI.gyp/TestWebKitAPI.gyp: 16 1 17 2013-01-16 Dan Carney <dcarney@google.com> 2 18 -
trunk/Tools/DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp
r138044 r139895 473 473 'variables': { 474 474 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)DumpRenderTree<(SHARED_LIB_SUFFIX)', 475 'input_jars_paths': [476 '<(PRODUCT_DIR)/lib.java/chromium_base.jar',477 '<(PRODUCT_DIR)/lib.java/chromium_net.jar',478 '<(PRODUCT_DIR)/lib.java/chromium_media.jar',479 ],480 475 'conditions': [ 481 476 ['inside_chromium_build==1', { … … 496 491 '<(chromium_src_dir)/testing/android/generate_native_test.py', 497 492 '<(input_shlib_path)', 498 ' <@(input_jars_paths)',493 '>@(input_jars_paths)', 499 494 ], 500 495 'outputs': [ … … 505 500 '--native_library', 506 501 '<(input_shlib_path)', 507 '--jars',508 '"<@(input_jars_paths)"',509 502 '--output', 510 503 '<(PRODUCT_DIR)/DumpRenderTree_apk', … … 528 521 '--ant-args', 529 522 '-DCHROMIUM_SRC=<(ant_build_to_chromium_src)', 523 '--ant-args', 524 '-DINPUT_JARS_PATHS=>@(input_jars_paths)', 530 525 '--app_abi', 531 526 '<(android_app_abi)', -
trunk/Tools/TestWebKitAPI/TestWebKitAPI.gyp/TestWebKitAPI.gyp
r138044 r139895 107 107 'variables': { 108 108 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)TestWebKitAPI<(SHARED_LIB_SUFFIX)', 109 'input_jars_paths': [110 '<(PRODUCT_DIR)/lib.java/chromium_base.jar',111 ],112 109 'conditions': [ 113 110 ['inside_chromium_build==1', { … … 128 125 '<(chromium_src_dir)/testing/android/generate_native_test.py', 129 126 '<(input_shlib_path)', 130 ' <@(input_jars_paths)',127 '>@(input_jars_paths)', 131 128 ], 132 129 'outputs': [ … … 137 134 '--native_library', 138 135 '<(input_shlib_path)', 139 '--jars',140 '"<@(input_jars_paths)"',141 136 '--output', 142 137 '<(PRODUCT_DIR)/TestWebKitAPI_apk', … … 160 155 '--ant-args', 161 156 '-DCHROMIUM_SRC=<(ant_build_to_chromium_src)', 157 '--ant-args', 158 '-DINPUT_JARS_PATHS=>@(input_jars_paths)', 162 159 '--app_abi', 163 160 '<(android_app_abi)',
Note:
See TracChangeset
for help on using the changeset viewer.