Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(889)

Side by Side Diff: ui/gfx/geometry/BUILD.gn

Issue 642343003: gfx: De-templatize the gfx::Point and gfx::PointF classes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git/+/master
Patch Set: inlines-point: rebase Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | ui/gfx/geometry/point.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « no previous file | ui/gfx/geometry/point.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698