| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 # GYP version: mojo/mojo_converters.gypi:mojo_geometry_lib | 5 component("transform") { |
| 6 component("geometry") { | 6 output_name = "mojo_transform_lib" |
| 7 output_name = "mojo_geometry_lib" | |
| 8 | 7 |
| 9 public_deps = [ | 8 public_deps = [ |
| 10 "//ui/gfx", | 9 "//ui/gfx", |
| 11 ] | 10 ] |
| 12 deps = [ | 11 deps = [ |
| 13 "//skia", | 12 "//skia", |
| 14 "//ui/gfx/geometry", | |
| 15 "//mojo/environment:chromium", | 13 "//mojo/environment:chromium", |
| 16 "//third_party/mojo/src/mojo/public/c/system:for_component", | 14 "//third_party/mojo/src/mojo/public/c/system:for_component", |
| 17 "//third_party/mojo_services/src/geometry/public/interfaces", | 15 "//third_party/mojo_services/src/geometry/public/interfaces", |
| 18 ] | 16 ] |
| 19 | 17 |
| 20 defines = [ "MOJO_GEOMETRY_IMPLEMENTATION" ] | 18 defines = [ "MOJO_TRANSFORM_IMPLEMENTATION" ] |
| 21 | 19 |
| 22 sources = [ | 20 sources = [ |
| 23 "geometry_type_converters.cc", | 21 "mojo_transform_export.h", |
| 24 "geometry_type_converters.h", | 22 "transform_converters.cc", |
| 25 "mojo_geometry_export.h", | 23 "transform_converters.h", |
| 26 ] | 24 ] |
| 27 } | 25 } |
| OLD | NEW |