Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(11)

Side by Side Diff: gpu/command_buffer_gles2/command_buffer_gles2.gyp

Issue 1220883008: Add command_buffer_gles2 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: comments to build files Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
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
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 '../../base/base.gyp:base',
16 '../../gpu/gpu.gyp:gles2_c_lib',
17 '../../gpu/gpu.gyp:gles2_implementation',
18 '../../gpu/gpu.gyp:command_buffer_service',
19 '../../ui/gfx/gfx.gyp:gfx_geometry',
20 '../../ui/gl/gl.gyp:gl',
21 ],
22 'sources': [
23 # Note: sources list duplicated in GN build.
24 # TODO(hendrikw): Move egl out of gles2_conform_support.
25 '../gles2_conform_support/egl/config.cc',
26 '../gles2_conform_support/egl/config.h',
27 '../gles2_conform_support/egl/display.cc',
28 '../gles2_conform_support/egl/display.h',
29 '../gles2_conform_support/egl/egl.cc',
30 '../gles2_conform_support/egl/surface.cc',
31 '../gles2_conform_support/egl/surface.h',
32 'command_buffer_egl.cc',
33 ],
34 'defines': [
35 'EGLAPI=',
36 'EGLAPIENTRY=',
37 ],
38 },
39 ],
40 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698