| OLD | NEW |
| 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 # GYP version: mojo/mojo_converters.gypi:mojo_surfaces_lib | 5 # GYP version: mojo/mojo_converters.gypi:mojo_surfaces_lib |
| 6 component("surfaces") { | 6 component("surfaces") { |
| 7 output_name = "mojo_surfaces_lib" | 7 output_name = "mojo_surfaces_lib" |
| 8 | 8 |
| 9 sources = [ | 9 sources = [ |
| 10 "mojo_surfaces_export.h", | 10 "mojo_surfaces_export.h", |
| 11 "surfaces_type_converters.cc", | 11 "surfaces_type_converters.cc", |
| 12 "surfaces_type_converters.h", | 12 "surfaces_type_converters.h", |
| 13 ] | 13 ] |
| 14 | 14 |
| 15 defines = [ "MOJO_SURFACES_IMPLEMENTATION" ] | 15 defines = [ "MOJO_SURFACES_IMPLEMENTATION" ] |
| 16 | 16 |
| 17 public_deps = [ | 17 public_deps = [ |
| 18 "//mojo/converters/geometry", | 18 "//mojo/converters/geometry", |
| 19 ] | 19 ] |
| 20 | 20 |
| 21 deps = [ | 21 deps = [ |
| 22 "//base", | 22 "//base", |
| 23 "//cc", | 23 "//cc", |
| 24 "//cc/surfaces", | 24 "//cc/surfaces", |
| 25 "//cc/surfaces:surface_id", | 25 "//cc/surfaces:surface_id", |
| 26 "//gpu", | 26 "//gpu", |
| 27 "//mojo/environment:chromium", | 27 "//mojo/environment:chromium", |
| 28 "//mojo/public/c/system", | 28 "//mojo/public/c/system", |
| 29 "//mojo/services/public/interfaces/surfaces:surface_id", | 29 "//mojo/services/surfaces/public/interfaces", |
| 30 "//mojo/services/public/interfaces/surfaces", | 30 "//mojo/services/surfaces/public/interfaces:surface_id", |
| 31 ] | 31 ] |
| 32 } | 32 } |
| OLD | NEW |