OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 component("geometry") { | 5 component("geometry") { |
6 sources = [ | 6 sources = [ |
7 "../gfx_export.h", | 7 "../gfx_export.h", |
8 "box_f.cc", | 8 "box_f.cc", |
9 "box_f.h", | 9 "box_f.h", |
10 "cubic_bezier.h", | 10 "cubic_bezier.h", |
11 "cubic_bezier.cc", | 11 "cubic_bezier.cc", |
12 "insets.cc", | 12 "insets.cc", |
13 "insets.h", | 13 "insets.h", |
14 "insets_base.h", | 14 "insets_base.h", |
15 "insets_f.cc", | 15 "insets_f.cc", |
16 "insets_f.h", | 16 "insets_f.h", |
17 "matrix3_f.cc", | 17 "matrix3_f.cc", |
18 "matrix3_f.h", | 18 "matrix3_f.h", |
19 "point.cc", | 19 "point.cc", |
20 "point.h", | 20 "point.h", |
21 "point3_f.cc", | 21 "point3_f.cc", |
22 "point3_f.h", | 22 "point3_f.h", |
23 "point_base.h", | |
24 "point_conversions.cc", | 23 "point_conversions.cc", |
25 "point_conversions.h", | 24 "point_conversions.h", |
26 "point_f.cc", | 25 "point_f.cc", |
27 "point_f.h", | 26 "point_f.h", |
28 "quad_f.cc", | 27 "quad_f.cc", |
29 "quad_f.h", | 28 "quad_f.h", |
30 "rect.cc", | 29 "rect.cc", |
31 "rect.h", | 30 "rect.h", |
32 "rect_conversions.cc", | 31 "rect_conversions.cc", |
33 "rect_conversions.h", | 32 "rect_conversions.h", |
(...skipping 28 matching lines...) Expand all Loading... |
62 "//base", | 61 "//base", |
63 "//ui/gfx:gfx_export", | 62 "//ui/gfx:gfx_export", |
64 ] | 63 ] |
65 | 64 |
66 # TODO(jdduke): Revisit optimization after gauging benefit, crbug/419051. | 65 # TODO(jdduke): Revisit optimization after gauging benefit, crbug/419051. |
67 if (is_android && !is_debug) { | 66 if (is_android && !is_debug) { |
68 configs -= [ "//build/config/compiler:optimize" ] | 67 configs -= [ "//build/config/compiler:optimize" ] |
69 configs += [ "//build/config/compiler:optimize_max" ] | 68 configs += [ "//build/config/compiler:optimize_max" ] |
70 } | 69 } |
71 } | 70 } |
OLD | NEW |