Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 # Copyright (c) 2015 The Chromium Authors. All rights reserved. | |
|
no sievers
2015/08/27 19:21:28
nit: drop '(c)'
hendrikw
2015/08/27 20:34:44
Done.
| |
| 2 # Use of this source code is governed by a BSD-style license that can be | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 { | |
| 6 'variables': { | |
| 7 'chromium_code': 1, | |
| 8 }, | |
| 9 'targets': [ | |
| 10 { | |
| 11 # GN version: //gpu:command_buffer_gles2 | |
| 12 'target_name': 'command_buffer_gles2', | |
| 13 'type': 'shared_library', | |
| 14 'dependencies': [ | |
| 15 '../../gpu/gles2_conform_support/gles2_conform_support.gyp:egl_native', | |
|
no sievers
2015/08/27 22:02:25
This actually also depends on all the GPU stuff. B
hendrikw
2015/08/28 16:01:51
Hmm, gles2_c_lib didn't have a dependency on gles2
no sievers
2015/08/28 17:59:31
Sounds good. You should probably put a TODO for th
hendrikw
2015/08/28 18:10:24
Done.
| |
| 16 '../../gpu/gpu.gyp:gles2_c_lib', | |
|
no sievers
2015/08/27 19:21:28
So how are you planning on using this overall?
Thi
hendrikw
2015/08/27 20:34:44
I started out with more dependencies, and pulled t
no sievers
2015/08/27 22:02:25
Ah because gles2_c_lib already depends on command_
hendrikw
2015/08/28 16:01:51
They get played :D
(Flush->ProcessCommands->Decod
| |
| 17 ], | |
| 18 'sources': [ | |
| 19 # Note: sources list duplicated in GN build. | |
| 20 'command_buffer_egl.cc', | |
| 21 ], | |
| 22 'defines': [ | |
| 23 'EGLAPI=', | |
| 24 'EGLAPIENTRY=', | |
| 25 ], | |
| 26 }, | |
| 27 ], | |
| 28 } | |
| OLD | NEW |