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 blink_core_sources("geometry") { | |
8 split_count = 5 | |
9 | |
10 sources = [ | |
11 "DOMMatrix.cpp", | |
12 "DOMMatrix.h", | |
13 "DOMMatrixReadOnly.cpp", | |
14 "DOMMatrixReadOnly.h", | |
15 "DOMPoint.cpp", | |
16 "DOMPoint.h", | |
17 "DOMPointReadOnly.cpp", | |
18 "DOMPointReadOnly.h", | |
19 "DOMQuad.cpp", | |
20 "DOMQuad.h", | |
21 "DOMRect.cpp", | |
22 "DOMRect.h", | |
23 "DOMRectReadOnly.cpp", | |
24 "DOMRectReadOnly.h", | |
25 ] | |
26 | |
27 configs += [ | |
28 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | |
29 "//build/config/compiler:no_size_t_to_int_warning", | |
30 ] | |
31 } | |
OLD | NEW |