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

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

Issue 1315633002: gfx: Converge scale precision related differences to single class. Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Corrected simple nit. Created 5 years, 4 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 | « ui/gfx/BUILD.gn ('k') | ui/gfx/geometry/scale.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 "../switches.cc",
9 "../switches.h",
8 "box_f.cc", 10 "box_f.cc",
9 "box_f.h", 11 "box_f.h",
10 "cubic_bezier.cc", 12 "cubic_bezier.cc",
11 "cubic_bezier.h", 13 "cubic_bezier.h",
12 "dip_util.cc", 14 "dip_util.cc",
13 "dip_util.h", 15 "dip_util.h",
14 "insets.cc", 16 "insets.cc",
15 "insets.h", 17 "insets.h",
16 "insets_base.h", 18 "insets_base.h",
17 "insets_f.cc", 19 "insets_f.cc",
(...skipping 10 matching lines...) Expand all
28 "point_f.h", 30 "point_f.h",
29 "quad_f.cc", 31 "quad_f.cc",
30 "quad_f.h", 32 "quad_f.h",
31 "rect.cc", 33 "rect.cc",
32 "rect.h", 34 "rect.h",
33 "rect_conversions.cc", 35 "rect_conversions.cc",
34 "rect_conversions.h", 36 "rect_conversions.h",
35 "rect_f.cc", 37 "rect_f.cc",
36 "rect_f.h", 38 "rect_f.h",
37 "safe_integer_conversions.h", 39 "safe_integer_conversions.h",
40 "scale.cc",
41 "scale.h",
38 "scroll_offset.cc", 42 "scroll_offset.cc",
39 "scroll_offset.h", 43 "scroll_offset.h",
40 "size.cc", 44 "size.cc",
41 "size.h", 45 "size.h",
42 "size_conversions.cc", 46 "size_conversions.cc",
43 "size_conversions.h", 47 "size_conversions.h",
44 "size_f.cc", 48 "size_f.cc",
45 "size_f.h", 49 "size_f.h",
46 "vector2d.cc", 50 "vector2d.cc",
47 "vector2d.h", 51 "vector2d.h",
(...skipping 10 matching lines...) Expand all
58 deps = [ 62 deps = [
59 "//base", 63 "//base",
60 "//ui/gfx:gfx_export", 64 "//ui/gfx:gfx_export",
61 ] 65 ]
62 66
63 if (is_android && !is_debug) { 67 if (is_android && !is_debug) {
64 configs -= [ "//build/config/compiler:optimize" ] 68 configs -= [ "//build/config/compiler:optimize" ]
65 configs += [ "//build/config/compiler:optimize_max" ] 69 configs += [ "//build/config/compiler:optimize_max" ]
66 } 70 }
67 } 71 }
OLDNEW
« no previous file with comments | « ui/gfx/BUILD.gn ('k') | ui/gfx/geometry/scale.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698