Bug 1372486 - Part 5: Fix Fennec resources path defined in moz.build to pass `mach build check`. r?nalexander,maliu,nechen,walkingice draft
authorjwu <jwu@mozilla.com>
Mon, 19 Jun 2017 23:30:10 +0800
changeset 596676 95d0ccbccbf611b24407c549e1cd0098efc42f92
parent 596675 4710baf6c8da2fe151c7197b273ff779484db62c
child 634029 81de5043342e6d9dd43fbf499ac4b59cf3ec8147
push id64713
push userbmo:topwu.tw@gmail.com
push dateMon, 19 Jun 2017 15:55:59 +0000
reviewersnalexander, maliu, nechen, walkingice
bugs1372486
milestone56.0a1
Bug 1372486 - Part 5: Fix Fennec resources path defined in moz.build to pass `mach build check`. r?nalexander,maliu,nechen,walkingice MozReview-Commit-ID: HL53dFyDk7z
mobile/android/base/moz.build
--- a/mobile/android/base/moz.build
+++ b/mobile/android/base/moz.build
@@ -83,38 +83,38 @@ with Files('java/org/mozilla/gecko/*Pres
     BUG_COMPONENT = ('Firefox for Android', 'Screencasting')
 
 with Files('java/org/mozilla/gecko/*GuestSession*'):
     BUG_COMPONENT = ('Firefox for Android', 'Profile Handling')
 
 with Files('locales/**'):
     BUG_COMPONENT = ('Firefox for Android', 'General')
 
-with Files('resources/**'):
+with Files('../app/src/*/res/**'):
     BUG_COMPONENT = ('Firefox for Android', 'General')
 
-with Files('resources/anim/**'):
+with Files('../app/src/*/res/anim/**'):
     BUG_COMPONENT = ('Firefox for Android', 'Overlays')
 
-with Files('resources/raw/*favicon*'):
+with Files('../app/src/*/res/raw/*favicon*'):
     BUG_COMPONENT = ('Firefox for Android', 'Favicon Handling')
 
-with Files('resources/xml*/*preference*'):
+with Files('../app/src/*/res/xml*/*preference*'):
     BUG_COMPONENT = ('Firefox for Android', 'Settings and Preferences')
 
-with Files('resources/menu/**'):
+with Files('../app/src/*/res/menu/**'):
     BUG_COMPONENT = ('Firefox for Android', 'General')
 
-with Files('resources/menu/*home*'):
+with Files('../app/src/*/res/menu/*home*'):
     BUG_COMPONENT = ('Firefox for Android', 'Awesomescreen')
 
-with Files('resources/menu/*activitystream*'):
+with Files('../app/src/*/res/menu/*activitystream*'):
     BUG_COMPONENT = ('Firefox for Android', 'Awesomescreen')
 
-with Files('resources/menu/browsersearch_contextmenu.xml'):
+with Files('../app/src/*/res/menu/browsersearch_contextmenu.xml'):
     BUG_COMPONENT = ('Firefox for Android', 'Awesomescreen')
 
 DIRS += ['locales']
 
 GENERATED_FILES += [
     '../geckoview/generated/preprocessed/org/mozilla/geckoview/BuildConfig.java',
     'AndroidManifest.xml',
     'generated/preprocessed/org/mozilla/gecko/AdjustConstants.java',