| 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 = [ |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 source_set("internal") { | 48 source_set("internal") { |
| 49 # This target is an implementation detail and is intended only to be used by | 49 # This target is an implementation detail and is intended only to be used by |
| 50 # the 'cpp' target. | 50 # the 'cpp' target. |
| 51 visibility = [ | 51 visibility = [ |
| 52 ":cpp", | 52 ":cpp", |
| 53 "//services/ui/demo:lib", | 53 "//services/ui/demo:lib", |
| 54 ] | 54 ] |
| 55 | 55 |
| 56 sources = [ | 56 sources = [ |
| 57 "client_compositor_frame_sink.cc", | 57 "client_compositor_frame_sink.cc", |
| 58 "client_compositor_frame_sink.h", |
| 58 "property_type_converters.cc", | 59 "property_type_converters.cc", |
| 59 "raster_thread_helper.cc", | 60 "raster_thread_helper.cc", |
| 60 ] | 61 ] |
| 61 | 62 |
| 62 deps = [ | 63 deps = [ |
| 63 "//base", | 64 "//base", |
| 64 "//cc", | 65 "//cc", |
| 65 "//cc/surfaces", | 66 "//cc/surfaces", |
| 66 "//cc/surfaces:surface_id", | 67 "//cc/surfaces:surface_id", |
| 67 "//mojo/public/cpp/bindings", | 68 "//mojo/public/cpp/bindings", |
| (...skipping 11 matching lines...) Expand all Loading... |
| 79 data_deps = [ | 80 data_deps = [ |
| 80 "//services/ui", | 81 "//services/ui", |
| 81 ] | 82 ] |
| 82 | 83 |
| 83 defines = [ "GL_GLEXT_PROTOTYPES" ] | 84 defines = [ "GL_GLEXT_PROTOTYPES" ] |
| 84 | 85 |
| 85 if (use_ozone) { | 86 if (use_ozone) { |
| 86 deps += [ "//ui/ozone" ] | 87 deps += [ "//ui/ozone" ] |
| 87 } | 88 } |
| 88 } | 89 } |
| OLD | NEW |