BUILD.gn 337 B

12345678910111213
  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. executable("format_url") {
  5. sources = [ "format_url.cc" ]
  6. deps = [
  7. "//base",
  8. "//base:i18n",
  9. "//components/url_formatter:url_formatter",
  10. "//url:url",
  11. ]
  12. }