|
|
Created:
6 years, 11 months ago by scottmg Modified:
6 years, 10 months ago Reviewers:
iannucci CC:
chromium-reviews, Siva Chandra Base URL:
svn://svn.chromium.org/chrome/trunk/src Visibility:
Public. |
DescriptionAdd landmine for 2013 switch
R=iannucci@chromium.org
BUG=309197, 323300
Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=245713
Patch Set 1 #
Messages
Total messages: 12 (0 generated)
Does that look like it'll do what I want? Clobber required because pdbs are not forward (or backward) compatible between versions and don't auto-clean.
On 2014/01/17 21:24:01, scottmg wrote: > Does that look like it'll do what I want? Clobber required because pdbs are not > forward (or backward) compatible between versions and don't auto-clean. btw, I notice landmines won't work when we switch the default because it looks for the env var, and misses defaults set in gyp_chromium. Also, I'm pretty sure this line https://code.google.com/p/chromium/codesearch#chromium/src/build/get_landmine... is wrong, so this script probably mostly doesn't do anything since builder() is mostly used with "and". :( Also, I hate everything.
On 2014/01/17 21:47:18, scottmg wrote: > On 2014/01/17 21:24:01, scottmg wrote: > > Does that look like it'll do what I want? Clobber required because pdbs are > not > > forward (or backward) compatible between versions and don't auto-clean. > > btw, I notice landmines won't work when we switch the default because it looks > for the env var, and misses defaults set in gyp_chromium. In particular here I meant GYP_MSVS_VERSION, which is generally (?) unset. > > Also, I'm pretty sure this line > > https://code.google.com/p/chromium/codesearch#chromium/src/build/get_landmine... > > is wrong, so this script probably mostly doesn't do anything since builder() is > mostly used with "and". :( > > Also, I hate everything.
cc +sivachandra as fyi in case this not working is affecting anything.
lgtm, sadface on builder being broken :(
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/scottmg@chromium.org/141583006/1
Message was sent while issue was closed.
Change committed as 245713
Message was sent while issue was closed.
Turns out this doesn't work because it runs as a separate script, and doesn't get environment modifications that happen inside gyp_chromium. I'm not sure what a good solution to that is. build/landmines.py should probably be run here: https://code.google.com/p/chromium/codesearch#chromium/src/build/gyp_chromium... rather than from DEPS.
Message was sent while issue was closed.
On 2014/02/05 22:52:45, scottmg wrote: > Turns out this doesn't work because it runs as a separate script, and doesn't > get environment modifications that happen inside gyp_chromium. > > I'm not sure what a good solution to that is. > > build/landmines.py should probably be run here: > https://code.google.com/p/chromium/codesearch#chromium/src/build/gyp_chromium... > rather than from DEPS. Hm. That sounds fine to me, I think.
Message was sent while issue was closed.
On 2014/02/05 23:00:08, iannucci wrote: > On 2014/02/05 22:52:45, scottmg wrote: > > Turns out this doesn't work because it runs as a separate script, and doesn't > > get environment modifications that happen inside gyp_chromium. > > > > I'm not sure what a good solution to that is. > > > > build/landmines.py should probably be run here: > > > https://code.google.com/p/chromium/codesearch#chromium/src/build/gyp_chromium... > > rather than from DEPS. > > Hm. That sounds fine to me, I think. OK, I'll post a CL to do that.
Message was sent while issue was closed.
On 2014/02/05 23:03:58, scottmg wrote: > On 2014/02/05 23:00:08, iannucci wrote: > > On 2014/02/05 22:52:45, scottmg wrote: > > > Turns out this doesn't work because it runs as a separate script, and > doesn't > > > get environment modifications that happen inside gyp_chromium. > > > > > > I'm not sure what a good solution to that is. > > > > > > build/landmines.py should probably be run here: > > > > > > https://code.google.com/p/chromium/codesearch#chromium/src/build/gyp_chromium... > > > rather than from DEPS. > > > > Hm. That sounds fine to me, I think. > > OK, I'll post a CL to do that. https://codereview.chromium.org/153073004/ |