Closed
Bug 795393
Opened 13 years ago
Closed 13 years ago
Remove instances of "ifneq (mobile,$(MOZ_BUILD_APP))"
Categories
(Firefox Build System :: General, defect)
Firefox Build System
General
Tracking
(Not tracked)
RESOLVED
FIXED
mozilla18
People
(Reporter: emorley, Assigned: emorley)
Details
Attachments
(1 file)
12.54 KB,
patch
|
ted
:
review+
|
Details | Diff | Splinter Review |
MOZ_BUILD_APP is now 'mobile/android' on Fennec, yet we still do plenty of things like:
79 ifneq (mobile,$(MOZ_BUILD_APP))
80 MOCHITEST_BROWSER_FILES = \
81 browser_bug592641.js \
82 bug592641_img.jpg \
83 $(NULL)
84 endif
Since nothing has blown up, I imagine most uses of |ifneq (mobile,$(MOZ_BUILD_APP))| can just be removed, since they are |if(true)| already. For those that should actually still be doing something, we need to s_mobile_mobile/android_g
Comment 1•13 years ago
|
||
I suspect these aren't a problem right now because they were only added so that we wouldn't mix desktop Firefox browser-chrome tests in with the Mobile Firefox browser-chrome tests, but we don't have browser-chrome tests at all on the new Android Firefox.
Comment 2•13 years ago
|
||
I believe you are correct :ted.
![]() |
Assignee | |
Comment 3•13 years ago
|
||
Ok, so we can just get rid of the conditionals, for those matching the pattern in comment 0 :-)
Summary: Fix or get rid of instances of "ifneq (mobile,$(MOZ_BUILD_APP))" → Remove instances of "ifneq (mobile,$(MOZ_BUILD_APP))"
![]() |
Assignee | |
Comment 4•13 years ago
|
||
Updated•13 years ago
|
Attachment #666532 -
Flags: review?(ted.mielczarek) → review+
![]() |
Assignee | |
Comment 5•13 years ago
|
||
Comment 6•13 years ago
|
||
Because we're filled with awesome, you're permaorange on Android M8, because of bug 559272 comment 126.
![]() |
Assignee | |
Comment 7•13 years ago
|
||
(In reply to Phil Ringnalda (:philor) from comment #6)
> Because we're filled with awesome, you're permaorange on Android M8, because
> of bug 559272 comment 126.
Filed bug 798806.
Comment 8•13 years ago
|
||
Status: ASSIGNED → RESOLVED
Closed: 13 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla18
Updated•8 years ago
|
Product: Core → Firefox Build System
You need to log in
before you can comment on or make changes to this bug.
Description
•