BUILD.gn 419 B

1234567891011121314151617181920
  1. # Copyright 2013 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. component("onc") {
  5. defines = [ "IS_ONC_IMPL" ]
  6. sources = [
  7. "onc_constants.cc",
  8. "onc_constants.h",
  9. "onc_pref_names.cc",
  10. "onc_pref_names.h",
  11. ]
  12. deps = [
  13. "//base",
  14. "//components/pref_registry",
  15. "//components/prefs",
  16. ]
  17. }