Closed
Bug 935857
Opened 12 years ago
Closed 12 years ago
Replace MOZ_RTSP with proper NECKO_PROTOCOL handling
Categories
(Firefox Build System :: General, defect)
Firefox Build System
General
Tracking
(Not tracked)
RESOLVED
FIXED
mozilla28
People
(Reporter: glandium, Assigned: glandium)
References
Details
(Whiteboard: [qa-])
Attachments
(2 files, 1 obsolete file)
|
10.33 KB,
patch
|
gps
:
review+
|
Details | Diff | Splinter Review |
|
17.58 KB,
patch
|
vchang
:
review+
|
Details | Diff | Splinter Review |
Bug 831645 added a new protocol to necko, but instead of using the existing infrastructure (NETWORK_PROTOCOLS), it added its own variable.
| Assignee | ||
Comment 1•12 years ago
|
||
Attachment #828528 -
Flags: review?(mcmanus)
Attachment #828528 -
Flags: review?(gps)
Comment 2•12 years ago
|
||
Comment on attachment 828528 [details] [diff] [review]
Replace MOZ_RTSP with proper NECKO_PROTOCOL handling
Review of attachment 828528 [details] [diff] [review]:
-----------------------------------------------------------------
::: b2g/installer/Makefile.in
@@ +49,5 @@
> ifneq (,$(filter WINNT Darwin Android,$(OS_TARGET)))
> DEFINES += -DMOZ_SHARED_MOZGLUE=1
> endif
>
> +ifneq (,$(filter rtsp,$(NECKO_PROTOCOLS)))
Can you do this in moz.build?
::: netwerk/protocol/moz.build
@@ +3,5 @@
> # This Source Code Form is subject to the terms of the Mozilla Public
> # License, v. 2.0. If a copy of the MPL was not distributed with this
> # file, You can obtain one at http://mozilla.org/MPL/2.0/.
>
> +PARALLEL_DIRS += sorted(CONFIG['NECKO_PROTOCOLS'].split())
Is sorted() exposed?
| Assignee | ||
Comment 3•12 years ago
|
||
(In reply to :Ms2ger from comment #2)
> > +PARALLEL_DIRS += sorted(CONFIG['NECKO_PROTOCOLS'].split())
>
> Is sorted() exposed?
yes.
| Assignee | ||
Comment 4•12 years ago
|
||
(In reply to :Ms2ger from comment #2)
> > +ifneq (,$(filter rtsp,$(NECKO_PROTOCOLS)))
>
> Can you do this in moz.build?
Actually, no, because b2g/installer is not a moz.build directory, although there is a moz.build, but it's not recursed into.
https://mxr.mozilla.org/mozilla-central/source/b2g/moz.build#7
Updated•12 years ago
|
Attachment #828528 -
Flags: review?(mcmanus) → review?(vchang)
Comment 5•12 years ago
|
||
Comment on attachment 828528 [details] [diff] [review]
Replace MOZ_RTSP with proper NECKO_PROTOCOL handling
Review of attachment 828528 [details] [diff] [review]:
-----------------------------------------------------------------
::: netwerk/base/src/Makefile.in
@@ +10,3 @@
> LOCAL_INCLUDES += -I$(topsrcdir)/netwerk/protocol/rtsp/controller
> LOCAL_INCLUDES += -I$(topsrcdir)/netwerk/protocol/rtsp/rtsp
> endif
While you're here, can you move these LOCAL_INCLUDES to moz.build?
::: netwerk/streamconv/converters/moz.build
@@ +16,5 @@
> 'nsTXTToHTMLConv.cpp',
> 'nsUnknownDecoder.cpp',
> ]
>
> +if 'ftp' in CONFIG['NECKO_PROTOCOLS'].split():
I wonder how much value exposing certain config variables as sets to Python would be. AC_SUBST_SET - Value would be string to make like AC_SUBST, but set to Python.
Attachment #828528 -
Flags: review?(gps) → review+
| Assignee | ||
Comment 6•12 years ago
|
||
I think this is a good idea and has value. Let's try that.
Attachment #829009 -
Flags: review?(gps)
| Assignee | ||
Comment 7•12 years ago
|
||
Updated with gps' comments and rebased against the other patch ; only interested in review of the .h/.cpp changes.
Attachment #829011 -
Flags: review?(vchang)
| Assignee | ||
Updated•12 years ago
|
Attachment #828528 -
Attachment is obsolete: true
Attachment #828528 -
Flags: review?(vchang)
Comment 8•12 years ago
|
||
Comment on attachment 829009 [details] [diff] [review]
Add AC_SUBST_SET to create a set() of strings in config.status and use it for NECKO_PROTOCOLS
Review of attachment 829009 [details] [diff] [review]:
-----------------------------------------------------------------
::: build/autoconf/config.status.m4
@@ +116,5 @@
>
> cat >> $CONFIG_STATUS <<\EOF
> ] ]
>
> +substs = [(name[1:-1], value[1:-1] if isinstance(value, types.StringTypes) else value) for name, value in [
All the literals should be str. Why bring in types.StringTypes?
::: python/mozbuild/mozbuild/backend/configenvironment.py
@@ +156,5 @@
> + if not isinstance(v, StringTypes):
> + if isinstance(v, Iterable):
> + type(v)(decode(i) for i in v)
> + elif not isinstance(v, text_type):
> + v = decode(v)
This feels like we're missing some asserts to ensure unexpected conditions are never hit.
Attachment #829009 -
Flags: review?(gps) → review+
| Assignee | ||
Comment 9•12 years ago
|
||
(In reply to Gregory Szorc [:gps] from comment #8)
> All the literals should be str. Why bring in types.StringTypes?
Future-proofing, since we want to use unicode literals, in the end.
Comment 10•12 years ago
|
||
Comment on attachment 829011 [details] [diff] [review]
Replace MOZ_RTSP with proper NECKO_PROTOCOL handling
Review of attachment 829011 [details] [diff] [review]:
-----------------------------------------------------------------
Thanks for you help to clean this up. It's really cool.
Attachment #829011 -
Flags: review?(vchang) → review+
| Assignee | ||
Comment 11•12 years ago
|
||
Comment 12•12 years ago
|
||
https://hg.mozilla.org/mozilla-central/rev/30a667407079
https://hg.mozilla.org/mozilla-central/rev/260fbed9b3ef
Status: NEW → RESOLVED
Closed: 12 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla28
Updated•12 years ago
|
Whiteboard: [qa-]
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
•