BUILD.gn 665 B

12345678910111213141516171819202122
  1. # Copyright 2019 The Chromium Authors. All rights reserved.
  2. # Use of this source code is governed by a BSD-style license that can be
  3. # found in the LICENSE file.
  4. import("//build/config/locales.gni")
  5. import("//tools/grit/grit_rule.gni")
  6. grit("omnibox_resources") {
  7. source = "omnibox_resources.grd"
  8. outputs = [ "grit/omnibox_resources.h" ]
  9. foreach(locale, all_chrome_locales) {
  10. outputs += [ "omnibox_resources_$locale.pak" ]
  11. }
  12. }
  13. grit("omnibox_pedal_synonyms") {
  14. source = "omnibox_pedal_synonyms.grd"
  15. outputs = [ "grit/omnibox_pedal_synonyms.h" ]
  16. foreach(locale, all_chrome_locales) {
  17. outputs += [ "omnibox_pedal_synonyms_$locale.pak" ]
  18. }
  19. }