OLD | NEW |
| (Empty) |
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 | |
5 import("//third_party/WebKit/Source/core/core.gni") | |
6 | |
7 target(core_link_small_target_type, "svg") { | |
8 visibility = [ "//third_party/WebKit/Source/core/*" ] | |
9 | |
10 sources = [ | |
11 "SVGComputedStyle.cpp", | |
12 "SVGComputedStyleDefs.cpp", | |
13 ] | |
14 | |
15 configs -= core_config_remove | |
16 configs += core_config_add | |
17 configs += [ | |
18 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | |
19 "//build/config/compiler:no_size_t_to_int_warning", | |
20 ] | |
21 | |
22 deps = [ | |
23 "//third_party/WebKit/Source/core:prerequisites", | |
24 ] | |
25 } | |
OLD | NEW |