Enable pseudolocales on non-official builds [chromium/src : master]

11 views
Skip to first unread message

Matt Stark (Gerrit)

unread,
Mar 1, 2021, 8:58:27 PM3/1/21
to alokp...@chromium.org, android-web...@chromium.org, blink-re...@chromium.org, blink-...@chromium.org, chromium-a...@chromium.org, cricke...@chromium.org, extension...@chromium.org, fuchsia...@chromium.org, halliwe...@chromium.org, ios-revie...@chromium.org, ios-r...@chromium.org, javierrob...@chromium.org, jdonnel...@chromium.org, lcwu+...@chromium.org, marq+...@chromium.org, mattreyno...@chromium.org, ortuno...@chromium.org, oshima...@chromium.org, webauthn...@chromium.org, Jochen Eisinger, chromium...@chromium.org, chromotin...@chromium.org

Attention is currently required from: Jochen Eisinger.

View Change

1 comment:

  • Patchset:

    • Patch Set #1:

      This is a reland of the previous commit you were approving (there were merge conflicts, so I couldn't just click the reland button).

To view, visit change 2726015. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-Project: chromium/src
Gerrit-Branch: master
Gerrit-Change-Id: I419272154fe25f7df9998b211f874047f27996fc
Gerrit-Change-Number: 2726015
Gerrit-PatchSet: 1
Gerrit-Owner: Matt Stark <ms...@google.com>
Gerrit-Reviewer: Jochen Eisinger <joc...@chromium.org>
Gerrit-Attention: Jochen Eisinger <joc...@chromium.org>
Gerrit-Comment-Date: Tue, 02 Mar 2021 01:58:15 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Gerrit-MessageType: comment

Jochen Eisinger (Gerrit)

unread,
Mar 3, 2021, 7:06:54 AM3/3/21
to Matt Stark, alokp...@chromium.org, android-web...@chromium.org, blink-re...@chromium.org, blink-...@chromium.org, chromium-a...@chromium.org, cricke...@chromium.org, extension...@chromium.org, fuchsia...@chromium.org, halliwe...@chromium.org, ios-revie...@chromium.org, ios-r...@chromium.org, javierrob...@chromium.org, jdonnel...@chromium.org, lcwu+...@chromium.org, marq+...@chromium.org, mattreyno...@chromium.org, ortuno...@chromium.org, oshima...@chromium.org, webauthn...@chromium.org, chromium...@chromium.org, chromotin...@chromium.org

Attention is currently required from: Matt Stark.

View Change

1 comment:

  • Patchset:

    • Patch Set #1:

      can you please ask folks from the chrome language team to review this?

To view, visit change 2726015. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-Project: chromium/src
Gerrit-Branch: master
Gerrit-Change-Id: I419272154fe25f7df9998b211f874047f27996fc
Gerrit-Change-Number: 2726015
Gerrit-PatchSet: 1
Gerrit-Owner: Matt Stark <ms...@google.com>
Gerrit-Reviewer: Jochen Eisinger <joc...@chromium.org>
Gerrit-Attention: Matt Stark <ms...@google.com>
Gerrit-Comment-Date: Wed, 03 Mar 2021 12:06:41 +0000

Trevor Perrier (Gerrit)

unread,
Mar 4, 2021, 10:43:18 PM3/4/21
to Matt Stark, alokp...@chromium.org, android-web...@chromium.org, blink-re...@chromium.org, blink-...@chromium.org, chromium-a...@chromium.org, cricke...@chromium.org, extension...@chromium.org, fuchsia...@chromium.org, halliwe...@chromium.org, ios-revie...@chromium.org, ios-r...@chromium.org, javierrob...@chromium.org, jdonnel...@chromium.org, lcwu+...@chromium.org, marq+...@chromium.org, mattreyno...@chromium.org, ortuno...@chromium.org, oshima...@chromium.org, webauthn...@chromium.org, Jochen Eisinger, chromium...@chromium.org, chromotin...@chromium.org

Attention is currently required from: Matt Stark.

View Change

6 comments:

  • Patchset:

    • Patch Set #1:

      This CL is really doing two things:

      1. Rename locales_with_fake_bidi to locales_with_pseudolocales.
      2. Enable pseudolocales.

      Most of the files and edits are for the rename rather than enabling pseudolocales. I think it would be a lot cleaner to split this into two CLs. The refactor should be really easy to get an LGTM for.

      For the enable pseudolocales CL you should get input from Chromecast owners on how they want to handle the pseudolocales. I think ignoring them in chromecast.gni will be what they want - but we should get an LGTM from them on that too.

  • File build/config/locales.gni:

    • Patch Set #1, Line 16: # - |ios_packed_locales_as_mac_outputs| subset for iOS output

      nit: maybe add |locales_with_pseudolocales| to the end of this list.

    • Patch Set #1, Line 235:

      pseudolocales = [
      "ar-XB",
      "en-XA",
      ]
      locales_and_pseudolocales = locales + pseudolocales

      The vast majority of edits for this simple refactor which should be safe to do. Can this be split out into a second CL that just renames locales_with_fake_bidi to locales_and_pseudolocales (I think this refactor is really good - it just makes the CL to "Enable pseudolocales on non-official builds" much longer and edit way more files then it needs to).

    • Patch Set #1, Line 248: locales += pseudolocales

      So do we know that everywhere |locales| is used to filter pak files the grit build command to make the pack files used |locales_and_pseudolocales|. Based on your testing it seems like this works on Linux and Windows - there weren't any issues with ChromeOS or Android builds?

      Something that would really help with this is to rename locales to something like all_platform_locales so that it's easier to find in code search. locales is just too generic of a variable name for something so important.

  • File chromecast/app/resources/chromecast_settings.grd:

    • Patch Set #1, Line 127: allow_pseudo="false"

      Just to clarify this is saying that even though the pseudolocale pak files are generated they shouldn't be used? Would it be better to introduce a |locales_without_pseudolocales| variable in locales.gni that is guaranteed to never have the pseudolocales even on dev builds?

  • File chromecast/app/verify_cast_locales.py:

To view, visit change 2726015. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-Project: chromium/src
Gerrit-Branch: master
Gerrit-Change-Id: I419272154fe25f7df9998b211f874047f27996fc
Gerrit-Change-Number: 2726015
Gerrit-PatchSet: 1
Gerrit-Owner: Matt Stark <ms...@google.com>
Gerrit-Reviewer: Jochen Eisinger <joc...@chromium.org>
Gerrit-Reviewer: Trevor Perrier <per...@chromium.org>
Gerrit-Attention: Matt Stark <ms...@google.com>
Gerrit-Comment-Date: Fri, 05 Mar 2021 03:43:02 +0000

Matt Stark (Gerrit)

unread,
Mar 4, 2021, 11:55:09 PM3/4/21
to alokp...@chromium.org, android-web...@chromium.org, blink-re...@chromium.org, blink-...@chromium.org, chromium-a...@chromium.org, cricke...@chromium.org, extension...@chromium.org, fuchsia...@chromium.org, halliwe...@chromium.org, ios-revie...@chromium.org, ios-r...@chromium.org, javierrob...@chromium.org, jdonnel...@chromium.org, lcwu+...@chromium.org, marq+...@chromium.org, mattreyno...@chromium.org, ortuno...@chromium.org, oshima...@chromium.org, webauthn...@chromium.org, Trevor Perrier, Jochen Eisinger, chromium...@chromium.org, chromotin...@chromium.org

Attention is currently required from: Trevor Perrier.

View Change

2 comments:

    • pseudolocales = [
      "ar-XB",
      "en-XA",
      ]
      locales_and_pseudolocales = locales + pseudolocales

    • The vast majority of edits for this simple refactor which should be safe to do. […]

      That's a good idea, I'll probably go do that and send it out for review next week.

    • So do we know that everywhere |locales| is used to filter pak files the grit build command to make t […]

      That is part of my concern - this is my first chrome change, and so I'm not actually sure how to test it properly. For now, I've just wrote target_os=[...], and confirmed that I was able to run autoninja -C out/<platform> for each of them. Is that sufficient? I had assumed that CQ would cover all of this, but it didn't seem to.

      WRT renaming locales to all_platform locales, a few notes:

      • If you look at remoting/android/BUILD.gn, you'll actually note that I managed to break the build by simply importing this file, and had to rename the variable so it didn't try and use this one instead.
      • However, because of that very problem, the refactor is very difficult - not all references to locales are actually references to this locales variable.
      • Note that all_platform_locales seems like a confusing name. It's more like current_platform_locales, if I'm understanding the code correctly.

To view, visit change 2726015. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-Project: chromium/src
Gerrit-Branch: master
Gerrit-Change-Id: I419272154fe25f7df9998b211f874047f27996fc
Gerrit-Change-Number: 2726015
Gerrit-PatchSet: 1
Gerrit-Owner: Matt Stark <ms...@google.com>
Gerrit-Reviewer: Jochen Eisinger <joc...@chromium.org>
Gerrit-Reviewer: Trevor Perrier <per...@chromium.org>
Gerrit-Attention: Trevor Perrier <per...@chromium.org>
Gerrit-Comment-Date: Fri, 05 Mar 2021 04:54:57 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Comment-In-Reply-To: Trevor Perrier <per...@chromium.org>
Gerrit-MessageType: comment

Trevor Perrier (Gerrit)

unread,
Mar 5, 2021, 2:25:09 AM3/5/21
to Matt Stark, alokp...@chromium.org, android-web...@chromium.org, blink-re...@chromium.org, blink-...@chromium.org, chromium-a...@chromium.org, cricke...@chromium.org, extension...@chromium.org, fuchsia...@chromium.org, halliwe...@chromium.org, ios-revie...@chromium.org, ios-r...@chromium.org, javierrob...@chromium.org, jdonnel...@chromium.org, lcwu+...@chromium.org, marq+...@chromium.org, mattreyno...@chromium.org, ortuno...@chromium.org, oshima...@chromium.org, webauthn...@chromium.org, Jochen Eisinger, chromium...@chromium.org, chromotin...@chromium.org

Attention is currently required from: Matt Stark.

View Change

2 comments:

  • File build/config/locales.gni:

    • That's a good idea, I'll probably go do that and send it out for review next week.

      ACK thanks - sorry for making this more work, but I think that will simplify landing this.

    • That is part of my concern - this is my first chrome change, and so I'm not actually sure how to tes […]

      Re: CQ coverage - yeah, I had similar issues when I was landing the new locales for Android. My understanding is that CQ doesn't build *all* the possible builds/platform configurations - the fact that you've tested them all on local builds should catch some of that. Almost every CL I did would get reverted at least once. There are also some downstream files that use |locales| (at least for Android - not sure if ChromeOS has those too).

      I think that's another reason splitting this CL makes sense. You're isolating just the part that might need to get reverted.

      Re: rename locales - Yes, that's a better name. I tried to do this last year (here's a very old WIP CL[1]) and used |platform_pak_locales|. But you're right this is a really hard refactor since not all uses of locales mean this variable. I need to work on other things and never got the downstream CLs ready to land this.

      However, using that CL as a guide for where |locales| is used I think you've covered all the Android uses I was worried about.

      [1] https://crrev.com/c/2076178

To view, visit change 2726015. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-Project: chromium/src
Gerrit-Branch: master
Gerrit-Change-Id: I419272154fe25f7df9998b211f874047f27996fc
Gerrit-Change-Number: 2726015
Gerrit-PatchSet: 1
Gerrit-Owner: Matt Stark <ms...@google.com>
Gerrit-Reviewer: Jochen Eisinger <joc...@chromium.org>
Gerrit-Reviewer: Trevor Perrier <per...@chromium.org>
Gerrit-Attention: Matt Stark <ms...@google.com>
Gerrit-Comment-Date: Fri, 05 Mar 2021 07:24:56 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Comment-In-Reply-To: Matt Stark <ms...@google.com>

Matt Stark (Gerrit)

unread,
Mar 12, 2021, 9:14:12 AM3/12/21
to alokp...@chromium.org, android-web...@chromium.org, blink-re...@chromium.org, blink-...@chromium.org, chromium-a...@chromium.org, cricke...@chromium.org, extension...@chromium.org, fuchsia...@chromium.org, halliwe...@chromium.org, ios-revie...@chromium.org, ios-r...@chromium.org, javierrob...@chromium.org, jdonnel...@chromium.org, lcwu+...@chromium.org, marq+...@chromium.org, mattreyno...@chromium.org, ortuno...@chromium.org, oshima...@chromium.org, webauthn...@chromium.org, Trevor Perrier, Jochen Eisinger, chromium...@chromium.org, chromotin...@chromium.org

Attention is currently required from: Trevor Perrier.

View Change

5 comments:

  • File build/config/locales.gni:

    • nit: maybe add |locales_with_pseudolocales| to the end of this list.

    • Done

    • ACK thanks - sorry for making this more work, but I think that will simplify landing this.

      Done

    • Re: CQ coverage - yeah, I had similar issues when I was landing the new locales for Android. […]

      Ack

  • File chromecast/app/resources/chromecast_settings.grd:

    • We should check with Chromecast owners what they want to do. […]

      Done

To view, visit change 2726015. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-Project: chromium/src
Gerrit-Branch: master
Gerrit-Change-Id: I419272154fe25f7df9998b211f874047f27996fc
Gerrit-Change-Number: 2726015
Gerrit-PatchSet: 3
Gerrit-Owner: Matt Stark <ms...@google.com>
Gerrit-Reviewer: Jochen Eisinger <joc...@chromium.org>
Gerrit-Reviewer: Trevor Perrier <per...@chromium.org>
Gerrit-Attention: Trevor Perrier <per...@chromium.org>
Gerrit-Comment-Date: Fri, 12 Mar 2021 14:13:51 +0000

Trevor Perrier (Gerrit)

unread,
Mar 12, 2021, 8:07:32 PM3/12/21
to Matt Stark, alokp...@chromium.org, android-web...@chromium.org, blink-re...@chromium.org, blink-...@chromium.org, chromium-a...@chromium.org, cricke...@chromium.org, extension...@chromium.org, fuchsia...@chromium.org, halliwe...@chromium.org, ios-revie...@chromium.org, ios-r...@chromium.org, javierrob...@chromium.org, jdonnel...@chromium.org, lcwu+...@chromium.org, marq+...@chromium.org, mattreyno...@chromium.org, ortuno...@chromium.org, oshima...@chromium.org, webauthn...@chromium.org, Jochen Eisinger, chromium...@chromium.org, chromotin...@chromium.org

Attention is currently required from: Matt Stark.

Patch set 3:Code-Review +1

View Change

1 comment:

  • Patchset:

    • Patch Set #3:

      Great, thanks for the update. This is much easier to reason about now. LGTM from a locales perspective.

To view, visit change 2726015. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-Project: chromium/src
Gerrit-Branch: master
Gerrit-Change-Id: I419272154fe25f7df9998b211f874047f27996fc
Gerrit-Change-Number: 2726015
Gerrit-PatchSet: 3
Gerrit-Owner: Matt Stark <ms...@google.com>
Gerrit-Reviewer: Jochen Eisinger <joc...@chromium.org>
Gerrit-Reviewer: Trevor Perrier <per...@chromium.org>
Gerrit-Attention: Matt Stark <ms...@google.com>
Gerrit-Comment-Date: Sat, 13 Mar 2021 01:07:23 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: Yes
Gerrit-MessageType: comment

Matt Stark (Gerrit)

unread,
Mar 14, 2021, 10:17:04 PM3/14/21
to alokp...@chromium.org, android-web...@chromium.org, blink-re...@chromium.org, blink-...@chromium.org, chromium-a...@chromium.org, cricke...@chromium.org, extension...@chromium.org, fuchsia...@chromium.org, halliwe...@chromium.org, ios-revie...@chromium.org, ios-r...@chromium.org, javierrob...@chromium.org, jdonnel...@chromium.org, lcwu+...@chromium.org, marq+...@chromium.org, mattreyno...@chromium.org, ortuno...@chromium.org, oshima...@chromium.org, webauthn...@chromium.org, Trevor Perrier, Jochen Eisinger, chromium...@chromium.org, chromotin...@chromium.org

Attention is currently required from: Jochen Eisinger.

Patch set 3:Commit-Queue +1

View Change

    To view, visit change 2726015. To unsubscribe, or for help writing mail filters, visit settings.

    Gerrit-Project: chromium/src
    Gerrit-Branch: master
    Gerrit-Change-Id: I419272154fe25f7df9998b211f874047f27996fc
    Gerrit-Change-Number: 2726015
    Gerrit-PatchSet: 3
    Gerrit-Owner: Matt Stark <ms...@google.com>
    Gerrit-Reviewer: Jochen Eisinger <joc...@chromium.org>
    Gerrit-Reviewer: Matt Stark <ms...@google.com>
    Gerrit-Reviewer: Trevor Perrier <per...@chromium.org>
    Gerrit-Attention: Jochen Eisinger <joc...@chromium.org>
    Gerrit-Comment-Date: Mon, 15 Mar 2021 02:16:51 +0000
    Gerrit-HasComments: No
    Gerrit-Has-Labels: Yes
    Gerrit-MessageType: comment

    Jochen Eisinger (Gerrit)

    unread,
    Mar 15, 2021, 6:00:59 AM3/15/21
    to Matt Stark, alokp...@chromium.org, android-web...@chromium.org, blink-re...@chromium.org, blink-...@chromium.org, chromium-a...@chromium.org, cricke...@chromium.org, extension...@chromium.org, fuchsia...@chromium.org, halliwe...@chromium.org, ios-revie...@chromium.org, ios-r...@chromium.org, javierrob...@chromium.org, jdonnel...@chromium.org, lcwu+...@chromium.org, marq+...@chromium.org, mattreyno...@chromium.org, ortuno...@chromium.org, oshima...@chromium.org, webauthn...@chromium.org, Chromium LUCI CQ, Trevor Perrier, chromium...@chromium.org, chromotin...@chromium.org

    Attention is currently required from: Matt Stark.

    Patch set 3:Code-Review +1

    View Change

    1 comment:

    To view, visit change 2726015. To unsubscribe, or for help writing mail filters, visit settings.

    Gerrit-Project: chromium/src
    Gerrit-Branch: master
    Gerrit-Change-Id: I419272154fe25f7df9998b211f874047f27996fc
    Gerrit-Change-Number: 2726015
    Gerrit-PatchSet: 3
    Gerrit-Owner: Matt Stark <ms...@google.com>
    Gerrit-Reviewer: Jochen Eisinger <joc...@chromium.org>
    Gerrit-Reviewer: Matt Stark <ms...@google.com>
    Gerrit-Reviewer: Trevor Perrier <per...@chromium.org>
    Gerrit-Attention: Matt Stark <ms...@google.com>
    Gerrit-Comment-Date: Mon, 15 Mar 2021 10:00:42 +0000

    Matt Stark (Gerrit)

    unread,
    Mar 15, 2021, 8:03:18 PM3/15/21
    to alokp...@chromium.org, android-web...@chromium.org, blink-re...@chromium.org, blink-...@chromium.org, chromium-a...@chromium.org, cricke...@chromium.org, extension...@chromium.org, fuchsia...@chromium.org, halliwe...@chromium.org, ios-revie...@chromium.org, ios-r...@chromium.org, javierrob...@chromium.org, jdonnel...@chromium.org, lcwu+...@chromium.org, marq+...@chromium.org, mattreyno...@chromium.org, ortuno...@chromium.org, oshima...@chromium.org, webauthn...@chromium.org, Jochen Eisinger, Chromium LUCI CQ, Trevor Perrier, chromium...@chromium.org, chromotin...@chromium.org

    Patch set 3:Commit-Queue +2

    View Change

      To view, visit change 2726015. To unsubscribe, or for help writing mail filters, visit settings.

      Gerrit-Project: chromium/src
      Gerrit-Branch: master
      Gerrit-Change-Id: I419272154fe25f7df9998b211f874047f27996fc
      Gerrit-Change-Number: 2726015
      Gerrit-PatchSet: 3
      Gerrit-Owner: Matt Stark <ms...@google.com>
      Gerrit-Reviewer: Jochen Eisinger <joc...@chromium.org>
      Gerrit-Reviewer: Matt Stark <ms...@google.com>
      Gerrit-Reviewer: Trevor Perrier <per...@chromium.org>
      Gerrit-Comment-Date: Tue, 16 Mar 2021 00:03:06 +0000

      Chromium LUCI CQ (Gerrit)

      unread,
      Mar 15, 2021, 8:08:37 PM3/15/21
      to Matt Stark, alokp...@chromium.org, android-web...@chromium.org, blink-re...@chromium.org, blink-...@chromium.org, chromium-a...@chromium.org, cricke...@chromium.org, extension...@chromium.org, fuchsia...@chromium.org, halliwe...@chromium.org, ios-revie...@chromium.org, ios-r...@chromium.org, javierrob...@chromium.org, jdonnel...@chromium.org, lcwu+...@chromium.org, marq+...@chromium.org, mattreyno...@chromium.org, ortuno...@chromium.org, oshima...@chromium.org, webauthn...@chromium.org, Jochen Eisinger, Trevor Perrier, chromium...@chromium.org, chromotin...@chromium.org
      Failed builds:
      luci.chromium.try/chromium_presubmit JOB_FAILED https://cr-buildbucket.appspot.com/build/8852649035812426176
      #### There are 1 error(s), 1 warning(s), and 0 notifications(s). Here are the errors:

      **ERROR**
      ```
      Missing LGTM from an OWNER for these files:
      remoting/resources/remoting_strings.grd

      ```

      #### To see notifications and warnings, look at the stdout of the presubmit step.
      luci.chromium.try/chromium_presubmit JOB_FAILED https://cr-buildbucket.appspot.com/build/8852648841684430592
      #### There are 1 error(s), 1 warning(s), and 0 notifications(s). Here are the errors:

      **ERROR**
      ```
      Missing LGTM from an OWNER for these files:
      remoting/resources/remoting_strings.grd

      ```

      #### To see notifications and warnings, look at the stdout of the presubmit step.

      View Change

        To view, visit change 2726015. To unsubscribe, or for help writing mail filters, visit settings.

        Gerrit-Project: chromium/src
        Gerrit-Branch: master
        Gerrit-Change-Id: I419272154fe25f7df9998b211f874047f27996fc
        Gerrit-Change-Number: 2726015
        Gerrit-PatchSet: 3
        Gerrit-Owner: Matt Stark <ms...@google.com>
        Gerrit-Reviewer: Jochen Eisinger <joc...@chromium.org>
        Gerrit-Reviewer: Matt Stark <ms...@google.com>
        Gerrit-Reviewer: Trevor Perrier <per...@chromium.org>
        Gerrit-Comment-Date: Tue, 16 Mar 2021 00:08:33 +0000
        Gerrit-HasComments: No
        Gerrit-Has-Labels: No
        Gerrit-MessageType: comment

        Gary Kacmarcik (Gerrit)

        unread,
        Mar 16, 2021, 12:17:22 PM3/16/21
        to Matt Stark, alokp...@chromium.org, android-web...@chromium.org, blink-re...@chromium.org, blink-...@chromium.org, chromium-a...@chromium.org, cricke...@chromium.org, extension...@chromium.org, fuchsia...@chromium.org, halliwe...@chromium.org, ios-revie...@chromium.org, ios-r...@chromium.org, javierrob...@chromium.org, jdonnel...@chromium.org, lcwu+...@chromium.org, marq+...@chromium.org, mattreyno...@chromium.org, ortuno...@chromium.org, oshima...@chromium.org, webauthn...@chromium.org, Jochen Eisinger, Chromium LUCI CQ, Trevor Perrier, chromium...@chromium.org, chromotin...@chromium.org

        Attention is currently required from: Matt Stark.

        Patch set 3:Code-Review +1

        View Change

          To view, visit change 2726015. To unsubscribe, or for help writing mail filters, visit settings.

          Gerrit-Project: chromium/src
          Gerrit-Branch: master
          Gerrit-Change-Id: I419272154fe25f7df9998b211f874047f27996fc
          Gerrit-Change-Number: 2726015
          Gerrit-PatchSet: 3
          Gerrit-Owner: Matt Stark <ms...@google.com>
          Gerrit-Reviewer: Gary Kacmarcik <gar...@chromium.org>
          Gerrit-Reviewer: Jochen Eisinger <joc...@chromium.org>
          Gerrit-Reviewer: Matt Stark <ms...@google.com>
          Gerrit-Reviewer: Trevor Perrier <per...@chromium.org>
          Gerrit-Attention: Matt Stark <ms...@google.com>
          Gerrit-Comment-Date: Tue, 16 Mar 2021 16:17:05 +0000

          Matt Stark (Gerrit)

          unread,
          Mar 16, 2021, 7:42:04 PM3/16/21
          to alokp...@chromium.org, android-web...@chromium.org, blink-re...@chromium.org, blink-...@chromium.org, chromium-a...@chromium.org, cricke...@chromium.org, extension...@chromium.org, fuchsia...@chromium.org, halliwe...@chromium.org, ios-revie...@chromium.org, ios-r...@chromium.org, javierrob...@chromium.org, jdonnel...@chromium.org, lcwu+...@chromium.org, marq+...@chromium.org, mattreyno...@chromium.org, ortuno...@chromium.org, oshima...@chromium.org, webauthn...@chromium.org, Gary Kacmarcik, Jochen Eisinger, Chromium LUCI CQ, Trevor Perrier, chromium...@chromium.org, chromotin...@chromium.org

          Patch set 3:Commit-Queue +2

          View Change

            To view, visit change 2726015. To unsubscribe, or for help writing mail filters, visit settings.

            Gerrit-Project: chromium/src
            Gerrit-Branch: master
            Gerrit-Change-Id: I419272154fe25f7df9998b211f874047f27996fc
            Gerrit-Change-Number: 2726015
            Gerrit-PatchSet: 3
            Gerrit-Owner: Matt Stark <ms...@google.com>
            Gerrit-Reviewer: Gary Kacmarcik <gar...@chromium.org>
            Gerrit-Reviewer: Jochen Eisinger <joc...@chromium.org>
            Gerrit-Reviewer: Matt Stark <ms...@google.com>
            Gerrit-Reviewer: Trevor Perrier <per...@chromium.org>
            Gerrit-Comment-Date: Tue, 16 Mar 2021 23:41:37 +0000

            Chromium LUCI CQ (Gerrit)

            unread,
            Mar 16, 2021, 7:46:57 PM3/16/21
            to Matt Stark, alokp...@chromium.org, android-web...@chromium.org, blink-re...@chromium.org, blink-...@chromium.org, chromium-a...@chromium.org, cricke...@chromium.org, extension...@chromium.org, fuchsia...@chromium.org, halliwe...@chromium.org, ios-revie...@chromium.org, ios-r...@chromium.org, javierrob...@chromium.org, jdonnel...@chromium.org, lcwu+...@chromium.org, marq+...@chromium.org, mattreyno...@chromium.org, ortuno...@chromium.org, oshima...@chromium.org, webauthn...@chromium.org, Gary Kacmarcik, Jochen Eisinger, Trevor Perrier, chromium...@chromium.org, chromotin...@chromium.org
            Failed builds:
            luci.chromium.try/chromium_presubmit JOB_FAILED https://cr-buildbucket.appspot.com/build/8852559784661240528

            #### There are 1 error(s), 1 warning(s), and 0 notifications(s). Here are the errors:

            **ERROR**
            ```
            Missing LGTM from an OWNER for these files:
                    chromecast/chromecast.gni


            ```

            #### To see notifications and warnings, look at the stdout of the presubmit step.
              luci.chromium.try/chromium_presubmit JOB_FAILED https://cr-buildbucket.appspot.com/build/8852559615027733840

            #### There are 1 error(s), 1 warning(s), and 0 notifications(s). Here are the errors:

            **ERROR**
            ```
            Missing LGTM from an OWNER for these files:
                    chromecast/chromecast.gni


            ```

            #### To see notifications and warnings, look at the stdout of the presubmit step.

            View Change

              To view, visit change 2726015. To unsubscribe, or for help writing mail filters, visit settings.

              Gerrit-Project: chromium/src
              Gerrit-Branch: master
              Gerrit-Change-Id: I419272154fe25f7df9998b211f874047f27996fc
              Gerrit-Change-Number: 2726015
              Gerrit-PatchSet: 3
              Gerrit-Owner: Matt Stark <ms...@google.com>
              Gerrit-Reviewer: Gary Kacmarcik <gar...@chromium.org>
              Gerrit-Reviewer: Jochen Eisinger <joc...@chromium.org>
              Gerrit-Reviewer: Matt Stark <ms...@google.com>
              Gerrit-Reviewer: Trevor Perrier <per...@chromium.org>
              Gerrit-Comment-Date: Tue, 16 Mar 2021 23:46:54 +0000

              Chromium LUCI CQ (Gerrit)

              unread,
              Mar 18, 2021, 12:54:18 AM3/18/21
              to Matt Stark, alokp...@chromium.org, android-web...@chromium.org, blink-re...@chromium.org, blink-...@chromium.org, chromium-a...@chromium.org, cricke...@chromium.org, extension...@chromium.org, fuchsia...@chromium.org, halliwe...@chromium.org, ios-revie...@chromium.org, ios-r...@chromium.org, javierrob...@chromium.org, jdonnel...@chromium.org, lcwu+...@chromium.org, marq+...@chromium.org, mattreyno...@chromium.org, ortuno...@chromium.org, oshima...@chromium.org, webauthn...@chromium.org, Gary Kacmarcik, Jochen Eisinger, Trevor Perrier, chromium...@chromium.org, chromotin...@chromium.org

              CQ is trying the patch.

              Note: The patchset #4 "Enable pseudolocales on non-official builds" sent to CQ was uploaded after this CL was CR+1-ed.
              Reviewer, please verify there is nothing unexpected https://chromium-review.googlesource.com/c/2726015/4

              Follow status at: https://chromium-cq-status.appspot.com/v2/patch-status/chromium-review.googlesource.com/2726015/4

              Bot data: {"action": "start", "triggered_at": "2021-03-18T04:54:08.0Z", "revision": "f6d6089d23cb49c2822e99452646c08f568c248a"}

              View Change

                To view, visit change 2726015. To unsubscribe, or for help writing mail filters, visit settings.

                Gerrit-Project: chromium/src
                Gerrit-Branch: master
                Gerrit-Change-Id: I419272154fe25f7df9998b211f874047f27996fc
                Gerrit-Change-Number: 2726015
                Gerrit-PatchSet: 4
                Gerrit-Owner: Matt Stark <ms...@google.com>
                Gerrit-Reviewer: Gary Kacmarcik <gar...@chromium.org>
                Gerrit-Reviewer: Jochen Eisinger <joc...@chromium.org>
                Gerrit-Reviewer: Matt Stark <ms...@google.com>
                Gerrit-Reviewer: Trevor Perrier <per...@chromium.org>
                Gerrit-Comment-Date: Thu, 18 Mar 2021 04:54:14 +0000

                Matt Stark (Gerrit)

                unread,
                Mar 18, 2021, 12:54:21 AM3/18/21
                to alokp...@chromium.org, android-web...@chromium.org, blink-re...@chromium.org, blink-...@chromium.org, chromium-a...@chromium.org, cricke...@chromium.org, extension...@chromium.org, fuchsia...@chromium.org, halliwe...@chromium.org, ios-revie...@chromium.org, ios-r...@chromium.org, javierrob...@chromium.org, jdonnel...@chromium.org, lcwu+...@chromium.org, marq+...@chromium.org, mattreyno...@chromium.org, ortuno...@chromium.org, oshima...@chromium.org, webauthn...@chromium.org, Gary Kacmarcik, Jochen Eisinger, Chromium LUCI CQ, Trevor Perrier, chromium...@chromium.org, chromotin...@chromium.org

                Patch set 4:Commit-Queue +2

                View Change

                  To view, visit change 2726015. To unsubscribe, or for help writing mail filters, visit settings.

                  Gerrit-Project: chromium/src
                  Gerrit-Branch: master
                  Gerrit-Change-Id: I419272154fe25f7df9998b211f874047f27996fc
                  Gerrit-Change-Number: 2726015
                  Gerrit-PatchSet: 4
                  Gerrit-Owner: Matt Stark <ms...@google.com>
                  Gerrit-Reviewer: Gary Kacmarcik <gar...@chromium.org>
                  Gerrit-Reviewer: Jochen Eisinger <joc...@chromium.org>
                  Gerrit-Reviewer: Matt Stark <ms...@google.com>
                  Gerrit-Reviewer: Trevor Perrier <per...@chromium.org>
                  Gerrit-Comment-Date: Thu, 18 Mar 2021 04:54:08 +0000

                  Chromium LUCI CQ (Gerrit)

                  unread,
                  Mar 18, 2021, 2:14:49 AM3/18/21
                  to Matt Stark, alokp...@chromium.org, android-web...@chromium.org, blink-re...@chromium.org, blink-...@chromium.org, chromium-a...@chromium.org, cricke...@chromium.org, extension...@chromium.org, fuchsia...@chromium.org, halliwe...@chromium.org, ios-revie...@chromium.org, ios-r...@chromium.org, javierrob...@chromium.org, jdonnel...@chromium.org, lcwu+...@chromium.org, marq+...@chromium.org, mattreyno...@chromium.org, ortuno...@chromium.org, oshima...@chromium.org, webauthn...@chromium.org, Gary Kacmarcik, Jochen Eisinger, Trevor Perrier, chromium...@chromium.org, chromotin...@chromium.org

                  Chromium LUCI CQ submitted this change.

                  View Change

                  Approvals: Gary Kacmarcik: Looks good to me Jochen Eisinger: Looks good to me Trevor Perrier: Looks good to me Matt Stark: Commit
                  Enable pseudolocales on non-official builds

                  BUG=chromium:1173812
                  TEST=Built chrome, this time built a windows version as well, confirmed that pseudolocales work as expected.

                  Change-Id: I419272154fe25f7df9998b211f874047f27996fc
                  Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2726015
                  Commit-Queue: Matt Stark <ms...@google.com>
                  Reviewed-by: Trevor Perrier <per...@chromium.org>
                  Reviewed-by: Jochen Eisinger <joc...@chromium.org>
                  Reviewed-by: Gary Kacmarcik <gar...@chromium.org>
                  Cr-Commit-Position: refs/heads/master@{#864130}
                  ---
                  M build/config/locales.gni
                  M chrome/android/expectations/chrome_modern_public_bundle.arm64.libs_and_assets.expected
                  M chrome/android/expectations/monochrome_public_bundle.arm64.libs_and_assets.expected
                  M chrome/android/expectations/trichrome_chrome_bundle.arm64.libs_and_assets.expected
                  M remoting/android/BUILD.gn
                  M remoting/host/win/BUILD.gn
                  M remoting/remoting_locales.gni
                  M remoting/resources/remoting_strings.grd
                  M remoting/tools/build/remoting_localize.gni
                  9 files changed, 47 insertions(+), 36 deletions(-)


                  3 is the latest approved patch-set. The change was submitted with unreviewed changes in the following files: The name of the file: chromecast/chromecast.gni Insertions: 4, Deletions: 2. ``` @@ -157:159, +157:161 @@ - # reference for all GN files referencing a locales list. |locales| is declared - # in //build/config/locales.gni. + # reference for all GN files referencing a locales list. + # |locales_without_pseudolocales| is declared in //build/config/locales.gni. + # See https://chromium-review.googlesource.com/488166/ for why we can't use + # pseudolocales in chromecast. ``` The name of the file: remoting/remoting_locales.gni Insertions: 4, Deletions: 1. ``` @@ -82:83, +82:86 @@ - remoting_locales += [ "en-US", "is" ] + remoting_locales += [ + "en-US", + "is", + ] ```

                  To view, visit change 2726015. To unsubscribe, or for help writing mail filters, visit settings.

                  Gerrit-Project: chromium/src
                  Gerrit-Branch: master
                  Gerrit-Change-Id: I419272154fe25f7df9998b211f874047f27996fc
                  Gerrit-Change-Number: 2726015
                  Gerrit-PatchSet: 5
                  Gerrit-Owner: Matt Stark <ms...@google.com>
                  Gerrit-Reviewer: Chromium LUCI CQ <chromiu...@luci-project-accounts.iam.gserviceaccount.com>
                  Gerrit-Reviewer: Gary Kacmarcik <gar...@chromium.org>
                  Gerrit-Reviewer: Jochen Eisinger <joc...@chromium.org>
                  Gerrit-Reviewer: Matt Stark <ms...@google.com>
                  Gerrit-Reviewer: Trevor Perrier <per...@chromium.org>
                  Gerrit-MessageType: merged

                  Findit (Gerrit)

                  unread,
                  Mar 18, 2021, 3:38:53 AM3/18/21
                  to Chromium LUCI CQ, Matt Stark, alokp...@chromium.org, android-web...@chromium.org, blink-re...@chromium.org, blink-...@chromium.org, chromium-a...@chromium.org, cricke...@chromium.org, extension...@chromium.org, fuchsia...@chromium.org, halliwe...@chromium.org, ios-revie...@chromium.org, ios-r...@chromium.org, javierrob...@chromium.org, jdonnel...@chromium.org, lcwu+...@chromium.org, marq+...@chromium.org, mattreyno...@chromium.org, ortuno...@chromium.org, oshima...@chromium.org, webauthn...@chromium.org, Gary Kacmarcik, Jochen Eisinger, Trevor Perrier, chromium...@chromium.org, chromotin...@chromium.org

                  Findit has created a revert of this change.

                  View Change

                  To view, visit change 2726015. To unsubscribe, or for help writing mail filters, visit settings.

                  Gerrit-Project: chromium/src
                  Gerrit-Branch: master
                  Gerrit-Change-Id: I419272154fe25f7df9998b211f874047f27996fc
                  Gerrit-Change-Number: 2726015
                  Gerrit-PatchSet: 5
                  Gerrit-Owner: Matt Stark <ms...@google.com>
                  Gerrit-Reviewer: Chromium LUCI CQ <chromiu...@luci-project-accounts.iam.gserviceaccount.com>
                  Gerrit-Reviewer: Gary Kacmarcik <gar...@chromium.org>
                  Gerrit-Reviewer: Jochen Eisinger <joc...@chromium.org>
                  Gerrit-Reviewer: Matt Stark <ms...@google.com>
                  Gerrit-Reviewer: Trevor Perrier <per...@chromium.org>
                  Gerrit-MessageType: revert

                  Owen Min (Gerrit)

                  unread,
                  Mar 19, 2021, 1:01:05 PM3/19/21
                  to Chromium LUCI CQ, Matt Stark, alokp...@chromium.org, android-web...@chromium.org, blink-re...@chromium.org, blink-...@chromium.org, chromium-a...@chromium.org, cricke...@chromium.org, extension...@chromium.org, fuchsia...@chromium.org, halliwe...@chromium.org, ios-revie...@chromium.org, ios-r...@chromium.org, javierrob...@chromium.org, jdonnel...@chromium.org, lcwu+...@chromium.org, marq+...@chromium.org, mattreyno...@chromium.org, ortuno...@chromium.org, oshima...@chromium.org, webauthn...@chromium.org, Gary Kacmarcik, Jochen Eisinger, Trevor Perrier, chromium...@chromium.org, chromotin...@chromium.org

                  Owen Min has created a revert of this change.

                  Reply all
                  Reply to author
                  Forward
                  0 new messages