[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

[tor-commits] [Git][tpo/applications/firefox-android][firefox-android-115.2.1-13.5-1] 2 commits: fixup! Modify build system



Title: GitLab

Dan Ballard pushed to branch firefox-android-115.2.1-13.5-1 at The Tor Project / Applications / firefox-android

Commits:

  • 9f6dee17
    by Dan Ballard at 2024-06-06T08:53:14-07:00
    fixup! Modify build system
    
    Bug 42568: remove fetching TAS and TOP and fetch tor-expert-bundle-aar
    
  • 742a038f
    by Dan Ballard at 2024-06-06T08:54:03-07:00
    fixup! Add Tor integration and UI
    
    Bug 42568: Removing tor-android-service and tor-onion-proxy and replacing with tor-expert-bundle-aar
    

4 changed files:

Changes:

  • fenix/app/.gitignore
    1 1
     /build
    
    2
    -/android-release.aar
    
    3
    -/jsocksAndroid-release.aar
    
    4
    -/service-release.aar
    
    5
    -/universal-0.0.3.jar
    
    2
    +/tor-expert-bundle.aar
    
    6 3
     /src/main/assets/extensions/{73a6fe31-595d-460b-a920-fcc0f8843232}.xpi

  • fenix/app/build.gradle
    ... ... @@ -704,12 +704,8 @@ dependencies {
    704 704
         implementation 'org.slf4j:slf4j-api:1.7.25'
    
    705 705
         implementation 'org.slf4j:slf4j-android:1.7.25'
    
    706 706
     
    
    707
    -    // Tor Android Services.
    
    708
    -    implementation files('service-release.aar')
    
    709
    -
    
    710
    -    // Tor Onion Proxy Library.
    
    711
    -    implementation files('universal-0.0.3.jar')
    
    712
    -    implementation files('android-release.aar')
    
    707
    +    // Tor Expert Bundle
    
    708
    +    implementation files('tor-expert-bundle.aar')
    
    713 709
     }
    
    714 710
     
    
    715 711
     protobuf {
    

  • fenix/app/src/main/res/values/strings.xml
    ... ... @@ -2057,4 +2057,6 @@
    2057 2057
         <string name="a11y_action_label_read_article">read the article</string>
    
    2058 2058
         <!-- Action label for links to the Firefox Pocket website. Talkback will append this to say "Double tap to open link to learn more". -->
    
    2059 2059
         <string name="a11y_action_label_pocket_learn_more">open link to learn more</string>
    
    2060
    +
    
    2061
    +    <string name="btn_cancel">Cancel</string>
    
    2060 2062
     </resources>

  • fenix/tools/tba-fetch-deps.sh
    ... ... @@ -6,20 +6,13 @@ if [ -z "$TOR_BROWSER_BUILD" ]; then
    6 6
     	TOR_BROWSER_BUILD=../../tor-browser-build
    
    7 7
     fi
    
    8 8
     
    
    9
    -android_service="$(ls -1td "$TOR_BROWSER_BUILD/out/tor-android-service/"tor-android-service-* | head -1)"
    
    10
    -if [ -z "$android_service" ]; then
    
    11
    -	echo "Cannot find Tor Android Service artifacts!"
    
    12
    -	exit 1
    
    13
    -fi
    
    14
    -
    
    15
    -onion_proxy_library="$(ls -1td "$TOR_BROWSER_BUILD/out/tor-onion-proxy-library/"tor-onion-proxy-library-* | head -1)"
    
    16
    -if [ -z "$onion_proxy_library" ]; then
    
    17
    -	echo "Cannot find Tor Onion Proxy library artifacts!"
    
    9
    +tor_expert_bundle_aar="$(ls -1td "$TOR_BROWSER_BUILD/out/tor-expert-bundle-aar/"tor-expert-bundle-aar-* | head -1)"
    
    10
    +if [ -z "tor_expert_bundle_aar" ]; then
    
    11
    +	echo "Cannot find Tor Expert Bundle arr artifacts!"
    
    18 12
     	exit 2
    
    19 13
     fi
    
    20 14
     
    
    21
    -cp "$android_service"/* app/
    
    22
    -cp "$onion_proxy_library"/* app/
    
    15
    +cp "$tor_expert_bundle_aar"/* app/
    
    23 16
     
    
    24 17
     noscript="$(find "$TOR_BROWSER_BUILD/out/browser" -name 'noscript*.xpi' -print | sort | tail -1)"
    
    25 18
     mkdir -p "app/src/main/assets/extensions"
    

  • _______________________________________________
    tor-commits mailing list
    tor-commits@xxxxxxxxxxxxxxxxxxxx
    https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits