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 source_set("cpp") { | 5 source_set("cpp") { |
6 sources = [ | 6 sources = [ |
| 7 "bitmap_uploader.h", |
7 "context_provider.h", | 8 "context_provider.h", |
8 "gles2_context.h", | 9 "gles2_context.h", |
9 "input_event_handler.h", | 10 "input_event_handler.h", |
| 11 "lib/bitmap_uploader.cc", |
10 "lib/command_buffer_client_impl.cc", | 12 "lib/command_buffer_client_impl.cc", |
11 "lib/command_buffer_client_impl.h", | 13 "lib/command_buffer_client_impl.h", |
12 "lib/context_provider.cc", | 14 "lib/context_provider.cc", |
13 "lib/gles2_context.cc", | 15 "lib/gles2_context.cc", |
14 "lib/in_flight_change.cc", | 16 "lib/in_flight_change.cc", |
15 "lib/in_flight_change.h", | 17 "lib/in_flight_change.h", |
16 "lib/output_surface.cc", | 18 "lib/output_surface.cc", |
17 "lib/property_type_converters.cc", | 19 "lib/property_type_converters.cc", |
18 "lib/scoped_window_ptr.cc", | 20 "lib/scoped_window_ptr.cc", |
19 "lib/window.cc", | 21 "lib/window.cc", |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
64 "//services/ui/gles2:lib", | 66 "//services/ui/gles2:lib", |
65 "//services/ui/public/interfaces", | 67 "//services/ui/public/interfaces", |
66 "//ui/display", | 68 "//ui/display", |
67 "//ui/events", | 69 "//ui/events", |
68 "//ui/gfx/geometry", | 70 "//ui/gfx/geometry", |
69 ] | 71 ] |
70 | 72 |
71 data_deps = [ | 73 data_deps = [ |
72 "//services/ui", | 74 "//services/ui", |
73 ] | 75 ] |
| 76 |
| 77 defines = [ "GL_GLEXT_PROTOTYPES" ] |
74 } | 78 } |
OLD | NEW |