BUILD.gn 358 B

12345678910111213141516
  1. # Copyright 2018 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/features.gni")
  5. static_library("country_codes") {
  6. sources = [
  7. "country_codes.cc",
  8. "country_codes.h",
  9. ]
  10. deps = [
  11. "//base",
  12. "//components/prefs",
  13. ]
  14. }