Chromium Code Reviews| Index: Source/heap/blink_heap_tests.gyp |
| diff --git a/Source/heap/blink_heap_tests.gyp b/Source/heap/blink_heap_tests.gyp |
| index 513d23c467f9e9808ed84e0e67fc3b9f785519e1..92e2f9e099b13235e562a699881071f73f691dce 100644 |
| --- a/Source/heap/blink_heap_tests.gyp |
| +++ b/Source/heap/blink_heap_tests.gyp |
| @@ -53,7 +53,14 @@ |
| '<(DEPTH)/base/allocator/allocator.gyp:allocator', |
| ] |
| }], |
| - ] |
| + ['OS=="android" and gtest_target_type == "shared_library"', { |
| + 'type': 'shared_library', |
| + 'dependencies': [ |
| + '<(DEPTH)/testing/android/native_test.gyp:native_test_native_code', |
| + '<(DEPTH)/tools/android/forwarder2/forwarder.gyp:forwarder2', |
| + ], |
| + }], |
| + ], |
| }, |
| { |
| 'target_name': 'blink_heap_run_all_tests', |
| @@ -71,5 +78,23 @@ |
| 'RunAllTests.cpp', |
| ] |
| }, |
| + ], # targets |
| + 'conditions': [ |
| + ['OS=="android" and android_webview_build==0 and gtest_target_type=="shared_library"', { |
| + 'targets': [{ |
| + 'target_name': 'blink_heap_unittests_apk', |
| + 'type': 'none', |
| + 'dependencies': [ |
| + '<(DEPTH)/base/base.gyp:base_java', |
| + '<(DEPTH)/net/net.gyp:net_java', |
| + 'blink_heap_unittests', |
| + ], |
| + 'variables': { |
| + 'test_suite_name': 'blink_heap_unittests', |
| + 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)webkit_unit_tests<(SHARED_LIB_SUFFIX)', |
|
Yaron
2014/01/27 22:25:34
This is the wrong value but it's actually unused n
Dirk Pranke
2014/01/27 22:46:19
Fixed, thanks!
|
| + }, |
| + 'includes': [ '../../../../build/apk_test.gypi' ], |
| + }], |
| + }], |
| ], |
| } |