blob: 26d1a313ab3907ddad37f47666fbf97d08e6ae7c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# Copyright 2016 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//build/config/jumbo.gni")
jumbo_component("range") {
sources = [
"gfx_range_export.h",
"range.cc",
"range.h",
"range_f.cc",
"range_f.h",
]
if (is_apple) {
sources += [ "range_mac.mm" ]
}
configs += [
# TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
"//build/config/compiler:no_size_t_to_int_warning",
]
defines = [ "GFX_RANGE_IMPLEMENTATION" ]
deps = [
"//base",
"//ui/gfx:gfx_export",
]
}
|