| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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: gpu/gles2_conform_support/gles_conform_support.gyp:egl_native | |
| 6 source_set("egl") { | 5 source_set("egl") { |
| 7 output_name = "egl_native" | 6 output_name = "egl_native" |
| 8 sources = [ | 7 sources = [ |
| 9 "config.cc", | 8 "config.cc", |
| 10 "config.h", | 9 "config.h", |
| 11 "context.cc", | 10 "context.cc", |
| 12 "context.h", | 11 "context.h", |
| 13 "display.cc", | 12 "display.cc", |
| 14 "display.h", | 13 "display.h", |
| 15 "egl.cc", | 14 "egl.cc", |
| (...skipping 18 matching lines...) Expand all Loading... |
| 34 "//gpu/command_buffer/client:gles2_c_lib_nocheck", | 33 "//gpu/command_buffer/client:gles2_c_lib_nocheck", |
| 35 "//gpu/command_buffer/client:gles2_implementation_no_check", | 34 "//gpu/command_buffer/client:gles2_implementation_no_check", |
| 36 "//gpu/command_buffer/common:gles2_utils", | 35 "//gpu/command_buffer/common:gles2_utils", |
| 37 "//gpu/command_buffer/service", | 36 "//gpu/command_buffer/service", |
| 38 "//ui/base", | 37 "//ui/base", |
| 39 "//ui/gfx", | 38 "//ui/gfx", |
| 40 "//ui/gfx/geometry", | 39 "//ui/gfx/geometry", |
| 41 "//ui/gl", | 40 "//ui/gl", |
| 42 ] | 41 ] |
| 43 } | 42 } |
| OLD | NEW |