| 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 import("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 | 6 |
| 7 # This is the public target. It contains only the public headers. The | 7 # This is the public target. It contains only the public headers. The |
| 8 # implementation (and private haders) are in 'internal'. | 8 # implementation (and private haders) are in 'internal'. |
| 9 source_set("cpp") { | 9 source_set("cpp") { |
| 10 sources = [ | 10 sources = [ |
| 11 "client_compositor_frame_sink.h", | |
| 12 "property_type_converters.h", | 11 "property_type_converters.h", |
| 13 "raster_thread_helper.h", | 12 "raster_thread_helper.h", |
| 14 ] | 13 ] |
| 15 | 14 |
| 16 public_deps = [ | 15 public_deps = [ |
| 17 "//base", | 16 "//base", |
| 18 "//cc", | 17 "//cc", |
| 19 "//cc/surfaces", | 18 "//cc/surfaces", |
| 20 "//cc/surfaces:surface_id", | 19 "//cc/surfaces:surface_id", |
| 21 "//mojo/public/cpp/bindings", | 20 "//mojo/public/cpp/bindings", |
| (...skipping 25 matching lines...) Expand all Loading... |
| 47 | 46 |
| 48 source_set("internal") { | 47 source_set("internal") { |
| 49 # This target is an implementation detail and is intended only to be used by | 48 # This target is an implementation detail and is intended only to be used by |
| 50 # the 'cpp' target. | 49 # the 'cpp' target. |
| 51 visibility = [ | 50 visibility = [ |
| 52 ":cpp", | 51 ":cpp", |
| 53 "//services/ui/demo:lib", | 52 "//services/ui/demo:lib", |
| 54 ] | 53 ] |
| 55 | 54 |
| 56 sources = [ | 55 sources = [ |
| 57 "client_compositor_frame_sink.cc", | |
| 58 "client_compositor_frame_sink.h", | |
| 59 "property_type_converters.cc", | 56 "property_type_converters.cc", |
| 60 "raster_thread_helper.cc", | 57 "raster_thread_helper.cc", |
| 61 ] | 58 ] |
| 62 | 59 |
| 63 deps = [ | 60 deps = [ |
| 64 "//base", | 61 "//base", |
| 65 "//cc", | 62 "//cc", |
| 66 "//cc/surfaces", | 63 "//cc/surfaces", |
| 67 "//cc/surfaces:surface_id", | 64 "//cc/surfaces:surface_id", |
| 68 "//mojo/public/cpp/bindings", | 65 "//mojo/public/cpp/bindings", |
| (...skipping 11 matching lines...) Expand all Loading... |
| 80 data_deps = [ | 77 data_deps = [ |
| 81 "//services/ui", | 78 "//services/ui", |
| 82 ] | 79 ] |
| 83 | 80 |
| 84 defines = [ "GL_GLEXT_PROTOTYPES" ] | 81 defines = [ "GL_GLEXT_PROTOTYPES" ] |
| 85 | 82 |
| 86 if (use_ozone) { | 83 if (use_ozone) { |
| 87 deps += [ "//ui/ozone" ] | 84 deps += [ "//ui/ozone" ] |
| 88 } | 85 } |
| 89 } | 86 } |
| OLD | NEW |