| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 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 | 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 mojom = "//ui/gfx/geometry/mojo/geometry.mojom" | 5 mojom = "//ui/gfx/geometry/mojo/geometry.mojom" |
| 6 public_headers = [ | 6 public_headers = [ |
| 7 "//ui/gfx/geometry/point.h", | 7 "//ui/gfx/geometry/point.h", |
| 8 "//ui/gfx/geometry/point_f.h", | 8 "//ui/gfx/geometry/point_f.h", |
| 9 "//ui/gfx/geometry/size.h", | 9 "//ui/gfx/geometry/size.h", |
| 10 "//ui/gfx/geometry/rect.h", | 10 "//ui/gfx/geometry/rect.h", |
| 11 "//ui/gfx/geometry/rect_f.h", | 11 "//ui/gfx/geometry/rect_f.h", |
| 12 "//ui/gfx/geometry/insets.h", | 12 "//ui/gfx/geometry/insets.h", |
| 13 "//ui/gfx/geometry/vector2d.h", |
| 14 "//ui/gfx/geometry/vector2d_f.h" |
| 13 ] | 15 ] |
| 14 traits_headers = [ "//ui/gfx/geometry/mojo/geometry_struct_traits.h" ] | 16 traits_headers = [ "//ui/gfx/geometry/mojo/geometry_struct_traits.h" ] |
| 15 deps = [ | 17 deps = [ |
| 16 "//ui/gfx/geometry", | 18 "//ui/gfx/geometry", |
| 17 ] | 19 ] |
| 18 type_mappings = [ | 20 type_mappings = [ |
| 19 "gfx.mojom.Point=gfx::Point", | 21 "gfx.mojom.Point=gfx::Point", |
| 20 "gfx.mojom.PointF=gfx::PointF", | 22 "gfx.mojom.PointF=gfx::PointF", |
| 21 "gfx.mojom.Size=gfx::Size", | 23 "gfx.mojom.Size=gfx::Size", |
| 22 "gfx.mojom.SizeF=gfx::SizeF", | 24 "gfx.mojom.SizeF=gfx::SizeF", |
| 23 "gfx.mojom.Rect=gfx::Rect", | 25 "gfx.mojom.Rect=gfx::Rect", |
| 24 "gfx.mojom.RectF=gfx::RectF", | 26 "gfx.mojom.RectF=gfx::RectF", |
| 25 "gfx.mojom.Insets=gfx::Insets", | 27 "gfx.mojom.Insets=gfx::Insets", |
| 26 "gfx.mojom.InsetsF=gfx::InsetsF", | 28 "gfx.mojom.InsetsF=gfx::InsetsF", |
| 29 "gfx.mojom.Vector2d=gfx::Vector2d", |
| 30 "gfx.mojom.Vector2dF=gfx::Vector2dF", |
| 27 ] | 31 ] |
| OLD | NEW |