| 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 import("//mojo/public/tools/bindings/mojom.gni") | 5 import("//mojo/public/tools/bindings/mojom.gni") |
| 6 | 6 |
| 7 mojom("mojo") { | 7 mojom("mojo") { |
| 8 sources = [ | 8 sources = [ |
| 9 "accelerated_widget.mojom", | 9 "accelerated_widget.mojom", |
| 10 "buffer_types.mojom", | 10 "buffer_types.mojom", |
| 11 "color_space.mojom", |
| 11 "icc_profile.mojom", | 12 "icc_profile.mojom", |
| 12 "selection_bound.mojom", | 13 "selection_bound.mojom", |
| 13 "transform.mojom", | 14 "transform.mojom", |
| 14 ] | 15 ] |
| 15 | 16 |
| 16 public_deps = [ | 17 public_deps = [ |
| 17 "//ui/gfx/geometry/mojo", | 18 "//ui/gfx/geometry/mojo", |
| 18 ] | 19 ] |
| 19 } | 20 } |
| 20 | 21 |
| (...skipping 11 matching lines...) Expand all Loading... |
| 32 sources = [ | 33 sources = [ |
| 33 "selection_bound_struct_traits.h", | 34 "selection_bound_struct_traits.h", |
| 34 "transform_struct_traits.h", | 35 "transform_struct_traits.h", |
| 35 ] | 36 ] |
| 36 public_deps = [ | 37 public_deps = [ |
| 37 ":mojo_shared_cpp_sources", | 38 ":mojo_shared_cpp_sources", |
| 38 "//mojo/public/cpp/bindings", | 39 "//mojo/public/cpp/bindings", |
| 39 "//ui/gfx", | 40 "//ui/gfx", |
| 40 ] | 41 ] |
| 41 } | 42 } |
| OLD | NEW |