Closed
Bug 558313
Opened 16 years ago
Closed 13 years ago
ipc/chromium/src/base/third_party duplicates code that is already in the mozilla code base
Categories
(Core :: IPC, defect)
Core
IPC
Tracking
()
RESOLVED
FIXED
mozilla16
People
(Reporter: glandium, Assigned: Ms2ger)
Details
Attachments
(1 file)
|
133.25 KB,
patch
|
ted
:
review+
|
Details | Diff | Splinter Review |
ipc/chromium/src/base/third_party/nspr and ipc/chromium/src/base/third_party/nss contain copies of things that can be found in nss and nspr
ipc/chromium/src/base/third_party/dmg_fp contains yet another copy of dtoa, which can already be found in the javascript engine source code, and in nspr, too.
| Assignee | ||
Updated•13 years ago
|
Assignee: nobody → Ms2ger
| Assignee | ||
Comment 1•13 years ago
|
||
Attachment #627118 -
Flags: review?(ted.mielczarek)
| Assignee | ||
Comment 2•13 years ago
|
||
Comment 3•13 years ago
|
||
Comment on attachment 627118 [details] [diff] [review]
Patch v1
Review of attachment 627118 [details] [diff] [review]:
-----------------------------------------------------------------
I'm a big fan of this.
::: mozglue/android/Makefile.in
@@ +64,5 @@
>
> include $(topsrcdir)/config/rules.mk
> +
> +prcpucfg.h:
> + cp $(topsrcdir)/nsprpub/pr/include/md/_linux.cfg prcpucfg.h
Could probably use $(INSTALL) or something here to get it symlinked.
Attachment #627118 -
Flags: review?(ted.mielczarek) → review+
| Reporter | ||
Comment 4•13 years ago
|
||
(In reply to Ted Mielczarek [:ted] from comment #3)
> > +prcpucfg.h:
> > + cp $(topsrcdir)/nsprpub/pr/include/md/_linux.cfg prcpucfg.h
>
> Could probably use $(INSTALL) or something here to get it symlinked.
Unfortunately, $(INSTALL) doesn't allow a file target, and thus doesn't allow to rename.
This could use dependencies, though:
prcpucfg.h: $(topsrcdir)/nsprpub/pr/include/md/_linux.cfg
cp $< $@
| Assignee | ||
Comment 5•13 years ago
|
||
Status: NEW → RESOLVED
Closed: 13 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla16
You need to log in
before you can comment on or make changes to this bug.
Description
•