| 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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 "//base", | 84 "//base", |
| 85 "//mojo/public/cpp/bindings", | 85 "//mojo/public/cpp/bindings", |
| 86 ] | 86 ] |
| 87 } | 87 } |
| 88 | 88 |
| 89 source_set("internal") { | 89 source_set("internal") { |
| 90 # This target is an implementation detail and is intended only to be used by | 90 # This target is an implementation detail and is intended only to be used by |
| 91 # the 'cpp' target. | 91 # the 'cpp' target. |
| 92 visibility = [ | 92 visibility = [ |
| 93 ":cpp", | 93 ":cpp", |
| 94 "//services/ui/demo:mus_demo_lib", | 94 "//services/ui/demo:lib", |
| 95 ] | 95 ] |
| 96 | 96 |
| 97 sources = [ | 97 sources = [ |
| 98 "context_provider.cc", | 98 "context_provider.cc", |
| 99 "gles2_context.cc", | 99 "gles2_context.cc", |
| 100 "gles2_context.h", | 100 "gles2_context.h", |
| 101 "gpu_memory_buffer_impl.cc", | 101 "gpu_memory_buffer_impl.cc", |
| 102 "gpu_memory_buffer_impl.h", | 102 "gpu_memory_buffer_impl.h", |
| 103 "gpu_service.cc", | 103 "gpu_service.cc", |
| 104 "in_flight_change.cc", | 104 "in_flight_change.cc", |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 147 data_deps = [ | 147 data_deps = [ |
| 148 "//services/ui", | 148 "//services/ui", |
| 149 ] | 149 ] |
| 150 | 150 |
| 151 defines = [ "GL_GLEXT_PROTOTYPES" ] | 151 defines = [ "GL_GLEXT_PROTOTYPES" ] |
| 152 | 152 |
| 153 if (use_ozone) { | 153 if (use_ozone) { |
| 154 deps += [ "//ui/ozone" ] | 154 deps += [ "//ui/ozone" ] |
| 155 } | 155 } |
| 156 } | 156 } |
| OLD | NEW |