OLD | NEW |
---|---|
(Empty) | |
1 # Copyright (c) 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:skia_runner | |
Nico
2015/06/15 18:54:38
did you forget to add the BUILD.gn file for this?
hendrikw
2015/06/15 18:57:13
Forgot to write it! :)
I'll try to figure out how
| |
12 'target_name': 'skia_runner', | |
13 'type': 'executable', | |
14 'dependencies': [ | |
15 '../../base/base.gyp:base', | |
16 '../../gpu/command_buffer/command_buffer.gyp:gles2_utils', | |
17 '../../gpu/gpu.gyp:command_buffer_service', | |
18 '../../gpu/gpu.gyp:gles2_implementation', | |
19 '../../gpu/gpu.gyp:gl_in_process_context', | |
20 '../../gpu/skia_bindings/skia_bindings.gyp:gpu_skia_bindings', | |
21 '../../skia/skia.gyp:skia', | |
22 '../../third_party/WebKit/public/blink.gyp:blink', | |
23 '../../ui/gl/gl.gyp:gl', | |
24 '../../ui/gfx/gfx.gyp:gfx', | |
25 ], | |
26 'sources': [ | |
27 # Note: sources list duplicated in GN build. | |
28 'in_process_graphics_system.cc', | |
29 'in_process_graphics_system.h', | |
30 'sk_picture_rasterizer.cc', | |
31 'sk_picture_rasterizer.h', | |
32 'skia_runner.cc', | |
33 ], | |
34 }, | |
35 ], | |
36 } | |
OLD | NEW |