BUILD.gn 454 B

123456789101112131415161718192021222324
  1. # Copyright 2016 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("range") {
  5. sources = [
  6. "gfx_range_export.h",
  7. "range.cc",
  8. "range.h",
  9. "range_f.cc",
  10. "range_f.h",
  11. ]
  12. if (is_apple) {
  13. sources += [ "range_mac.mm" ]
  14. }
  15. defines = [ "GFX_RANGE_IMPLEMENTATION" ]
  16. deps = [
  17. "//base",
  18. "//ui/gfx:gfx_export",
  19. ]
  20. }