OLD | NEW |
---|---|
(Empty) | |
1 # Copyright (c) 2016 Google Inc. All rights reserved. | |
Sergey Ulanov
2016/07/09 01:01:21
Do we still need to update GYP?
According to crbug
Yuwei
2016/07/09 01:21:24
This is for iOS.
Sergey Ulanov
2016/07/13 04:42:11
I see. Then do you need a separate .gyp file inste
Yuwei
2016/07/13 18:14:16
I don't have a strong opinion... Just put this int
| |
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 'opengl_renderer_sources': [ | |
8 'gl_canvas.cc', | |
9 'gl_canvas.h', | |
10 'gl_desktop.cc', | |
11 'gl_desktop.h', | |
12 'gl_helpers.cc', | |
13 'gl_helpers.h', | |
14 'gl_render_layer.cc', | |
15 'gl_render_layer.h' | |
16 ] | |
17 }, | |
18 'targets': [ | |
19 { | |
20 'target_name': 'opengl_renderer', | |
21 'type': '<(component)', | |
22 'sources': [ | |
23 '<@(opengl_renderer_sources)', | |
24 ], | |
25 'dependencies': [ | |
26 '../third_party/khronos/khronos.gyp:khronos_headers', | |
27 '../third_party/webrtc/webrtc.gyp:webrtc' | |
28 ] | |
29 } | |
30 ] | |
31 } | |
OLD | NEW |