Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(60)

Issue 1977813002: Use relative filenames for internal includes. (Closed)

Created:
4 years, 7 months ago by nisse-chromium (ooo August 14)
Modified:
4 years, 3 months ago
Base URL:
https://chromium.googlesource.com/libyuv/libyuv@master
Target Ref:
refs/heads/master
Project:
libyuv
Visibility:
Public.

Description

Use relative filenames for internal includes. This makes it possible for applications to use, e.g., #include "somewhere/libyuv/include/libyuv/convert.h" without arranging so that libyuv's include directory is added with -I on the compiler command line. BUG=

Patch Set 1 #

Unified diffs Side-by-side diffs Delta from patch set Stats (+29 lines, -29 lines) Patch
M include/libyuv/compare.h View 1 chunk +1 line, -1 line 0 comments Download
M include/libyuv/compare_row.h View 1 chunk +1 line, -1 line 0 comments Download
M include/libyuv/convert.h View 1 chunk +4 lines, -4 lines 0 comments Download
M include/libyuv/convert_argb.h View 1 chunk +4 lines, -4 lines 0 comments Download
M include/libyuv/convert_from.h View 1 chunk +2 lines, -2 lines 0 comments Download
M include/libyuv/convert_from_argb.h View 1 chunk +1 line, -1 line 0 comments Download
M include/libyuv/cpu_id.h View 1 chunk +1 line, -1 line 0 comments Download
M include/libyuv/mjpeg_decoder.h View 1 chunk +1 line, -1 line 0 comments Download
M include/libyuv/planar_functions.h View 1 chunk +3 lines, -3 lines 0 comments Download
M include/libyuv/rotate.h View 1 chunk +1 line, -1 line 0 comments Download
M include/libyuv/rotate_argb.h View 1 chunk +2 lines, -2 lines 0 comments Download
M include/libyuv/rotate_row.h View 1 chunk +1 line, -1 line 0 comments Download
M include/libyuv/row.h View 1 chunk +1 line, -1 line 0 comments Download
M include/libyuv/scale.h View 1 chunk +1 line, -1 line 0 comments Download
M include/libyuv/scale_argb.h View 1 chunk +2 lines, -2 lines 0 comments Download
M include/libyuv/scale_row.h View 1 chunk +2 lines, -2 lines 0 comments Download
M include/libyuv/video_common.h View 1 chunk +1 line, -1 line 0 comments Download

Messages

Total messages: 16 (4 generated)
nisse-chromium (ooo August 14)
4 years, 7 months ago (2016-05-13 11:06:45 UTC) #3
magjed_chromium
+kjellander kjellander, can you help verify that changing all: #include "libyuv/xxx.h" to #include "xxx.h" in ...
4 years, 7 months ago (2016-05-13 11:43:54 UTC) #5
kjellander_chromium
On 2016/05/13 11:43:54, magjed_chromium wrote: > +kjellander > > kjellander, can you help verify that ...
4 years, 7 months ago (2016-05-13 12:23:36 UTC) #7
nisse-chromium (ooo August 14)
On 2016/05/13 12:23:36, kjellander (chromium) wrote: > On 2016/05/13 11:43:54, magjed_chromium wrote: > > +kjellander ...
4 years, 7 months ago (2016-05-13 12:59:52 UTC) #8
nisse-chromium (ooo August 14)
For a bit more context, webrtc's common_video.gyp includes the conditional ['build_libyuv==1', { 'dependencies': ['<(DEPTH)/third_party/libyuv/libyuv.gyp:libyuv',], 'export_dependent_settings': ...
4 years, 7 months ago (2016-05-17 09:07:32 UTC) #9
magjed_chromium
On 2016/05/17 09:07:32, nisse-chromium wrote: > For a bit more context, webrtc's common_video.gyp includes the ...
4 years, 7 months ago (2016-05-18 10:29:30 UTC) #10
nisse-chromium (ooo August 14)
On 2016/05/18 10:29:30, magjed_chromium wrote: > Make sure this follows the Google style guide > ...
4 years, 7 months ago (2016-05-18 12:04:15 UTC) #11
kjellander_chromium
On 2016/05/18 12:04:15, nisse-chromium wrote: > On 2016/05/18 10:29:30, magjed_chromium wrote: > > Make sure ...
4 years, 6 months ago (2016-05-23 07:17:56 UTC) #12
nisse-chromium (ooo August 14)
On 2016/05/23 07:17:56, kjellander (chromium) wrote: > I'm not an expert, but I think it ...
4 years, 6 months ago (2016-05-23 08:47:57 UTC) #13
nisse-chromium (ooo August 14)
Just let me give one more concrete example. If you don't agree, I'll just have ...
4 years, 3 months ago (2016-08-29 06:43:33 UTC) #14
fbarchard1
Re I believe the proper way to include libyuv headers in webrtc is to use ...
4 years, 3 months ago (2016-08-29 17:59:44 UTC) #15
nisse-chromium (ooo August 14)
4 years, 3 months ago (2016-08-30 06:26:22 UTC) #16
On 2016/08/29 17:59:44, fbarchard1 wrote:

> A relative name (#include "convert_from.h") is ambiguous and may find the
wrong
> header?

No, in the case at ahnd, where the file "convert_from.h" is located in the same
directory as the file containing the #include "convert_from.h" directive,
there's no ambiguity.

> thats why we moved away from that early on?

Don't know, I'm afraid I'm not aware of that history.
 
> I did do work on this bug to reduce internal, unnecessary includes.

Nice. But I guess libyuv/basic_types.h is included by most libyuv headers?

To get the needed -I flags on the compiler command line for webrtc, it seems
sufficient to add a direct libyuv dependency to the target in question. Like in

https://codereview.webrtc.org/2287233002/diff/20001/webrtc/examples/BUILD.gn

I'll close this if I don't get more support for the change in the next few days.
Thanks for your review!

Powered by Google App Engine
This is Rietveld 408576698