Commit f09f9a93 authored by Andrew Grieve's avatar Andrew Grieve Committed by Commit Bot

SuperSize: Fix arcore-android-sdk not having a component

The component lookup logic uses dirname(source_path), so we should not
use directories as source_paths.

Bug: None
Change-Id: Ibbfd6670a68ce5016912b4ad1390226cbc25b339
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2484045
Commit-Queue: Andrew Grieve <agrieve@chromium.org>
Auto-Submit: Andrew Grieve <agrieve@chromium.org>
Reviewed-by: default avatarSamuel Huang <huangs@chromium.org>
Cr-Commit-Position: refs/heads/master@{#818468}
parent 52c17fa2
...@@ -102,17 +102,25 @@ class SectionSizeKnobs(object): ...@@ -102,17 +102,25 @@ class SectionSizeKnobs(object):
'assets/webapk_dex_version.txt': 'assets/webapk_dex_version.txt':
'../../chrome/android/webapk/libs/runtime_library_version.gni', '../../chrome/android/webapk/libs/runtime_library_version.gni',
'lib/armeabi-v7a/libarcore_sdk_c_minimal.so': 'lib/armeabi-v7a/libarcore_sdk_c_minimal.so':
'../../third_party/arcore-android-sdk', '../../third_party/arcore-android-sdk/BUILD.gn',
'lib/armeabi-v7a/libarcore_sdk_c.so': 'lib/armeabi-v7a/libarcore_sdk_c.so':
'../../third_party/arcore-android-sdk', '../../third_party/arcore-android-sdk/BUILD.gn',
'lib/armeabi-v7a/libcrashpad_handler_trampoline.so': 'lib/armeabi-v7a/libcrashpad_handler_trampoline.so':
'../../third_party/crashpad/libcrashpad_handler_trampoline.so', '../../third_party/crashpad/BUILD.gn',
'lib/armeabi-v7a/libyoga.so': 'lib/armeabi-v7a/libyoga.so':
'../../chrome/android/feed', '../../chrome/android/feed/BUILD.gn',
'lib/armeabi-v7a/libelements.so': 'lib/armeabi-v7a/libelements.so':
'../../chrome/android/feed', '../../chrome/android/feed/BUILD.gn',
'lib/arm64-v8a/libarcore_sdk_c_minimal.so':
'../../third_party/arcore-android-sdk/BUILD.gn',
'lib/arm64-v8a/libarcore_sdk_c.so':
'../../third_party/arcore-android-sdk/BUILD.gn',
'lib/arm64-v8a/libcrashpad_handler_trampoline.so': 'lib/arm64-v8a/libcrashpad_handler_trampoline.so':
'../../third_party/crashpad/libcrashpad_handler_trampoline.so', '../../third_party/crashpad/BUILD.gn',
'lib/arm64-v8a/libyoga.so':
'../../chrome/android/feed/BUILD.gn',
'lib/arm64-v8a/libelements.so':
'../../chrome/android/feed/BUILD.gn',
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment