diff options
Diffstat (limited to 'chromium/chrome/android/modules')
3 files changed, 6 insertions, 6 deletions
diff --git a/chromium/chrome/android/modules/chrome_bundle_tmpl.gni b/chromium/chrome/android/modules/chrome_bundle_tmpl.gni index 76b0d11a6a2..693df7e361d 100644 --- a/chromium/chrome/android/modules/chrome_bundle_tmpl.gni +++ b/chromium/chrome/android/modules/chrome_bundle_tmpl.gni @@ -77,19 +77,19 @@ template("chrome_bundle") { "base_module_target", "bundle_name", "compress_shared_libraries", + "expected_proguard_config", "keystore_name", "keystore_password", "keystore_path", + "lint_suppressions_dep", "lint_suppressions_file", "manifest_package", "min_sdk_version", "proguard_android_sdk_dep", - "proguard_jar_path", "sign_bundle", "static_library_provider", "static_library_synchronized_proguard", - "verify_proguard_flags", - "verify_native_libs_and_assets", + "expected_libs_and_assets", "version_code", ]) command_line_flags_file = "chrome-command-line" diff --git a/chromium/chrome/android/modules/stack_unwinder/internal/BUILD.gn b/chromium/chrome/android/modules/stack_unwinder/internal/BUILD.gn index 23ae81de902..acbf5c2329d 100644 --- a/chromium/chrome/android/modules/stack_unwinder/internal/BUILD.gn +++ b/chromium/chrome/android/modules/stack_unwinder/internal/BUILD.gn @@ -43,7 +43,8 @@ component("stack_unwinder") { ":jni_headers", ":jni_registration", "//base", - "//chrome/android/features/stack_unwinder/public:memory_regions_map", + "//base:native_unwinder_android", + "//chrome/android/features/stack_unwinder/public:native", ] # stack unwinder native entrypoints belong in the partition. diff --git a/chromium/chrome/android/modules/stack_unwinder/public/BUILD.gn b/chromium/chrome/android/modules/stack_unwinder/public/BUILD.gn index 0ea5726014b..488f5b253cd 100644 --- a/chromium/chrome/android/modules/stack_unwinder/public/BUILD.gn +++ b/chromium/chrome/android/modules/stack_unwinder/public/BUILD.gn @@ -20,8 +20,7 @@ source_set("module") { sources = [ "module.cc" ] deps = [ "//base", - "//chrome/android/features/stack_unwinder/public:memory_regions_map", + "//chrome/android/features/stack_unwinder/public:native", "//chrome/android/modules/stack_unwinder/provider:jni_headers", ] - libs = [ "dl" ] } |