Chromium Code Reviews| Index: gpu/skia_runner/skia_runner.gyp |
| diff --git a/gpu/skia_runner/skia_runner.gyp b/gpu/skia_runner/skia_runner.gyp |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..e1388b103651a9bcb8634d7e5d925bd27439ad40 |
| --- /dev/null |
| +++ b/gpu/skia_runner/skia_runner.gyp |
| @@ -0,0 +1,35 @@ |
| +# Copyright (c) 2015 The Chromium Authors. All rights reserved. |
| +# Use of this source code is governed by a BSD-style license that can be |
| +# found in the LICENSE file. |
| + |
| +{ |
| + 'variables': { |
|
Nico
2015/06/14 21:45:07
Set chromium_code to 1 here (cs.chromium.org for "
hendrikw
2015/06/15 16:55:23
Done.
|
| + }, |
| + 'targets': [ |
| + { |
| + # GN version: //gpu:skia_runner |
| + 'target_name': 'skia_runner', |
| + 'type': 'executable', |
| + 'dependencies': [ |
| + '<(DEPTH)/base/base.gyp:base', |
|
Nico
2015/06/14 21:45:07
<(DEPTH) is for .gypi files (where the DEPTH is di
hendrikw
2015/06/15 16:55:23
Ah, I was wondering about that, thanks!
Done.
|
| + '<(DEPTH)/gpu/command_buffer/command_buffer.gyp:gles2_utils', |
| + '<(DEPTH)/gpu/gpu.gyp:command_buffer_service', |
| + '<(DEPTH)/gpu/gpu.gyp:gles2_implementation', |
| + '<(DEPTH)/gpu/gpu.gyp:gl_in_process_context', |
| + '<(DEPTH)/gpu/skia_bindings/skia_bindings.gyp:gpu_skia_bindings', |
| + '<(DEPTH)/skia/skia.gyp:skia', |
| + '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink', |
| + '<(DEPTH)/ui/gl/gl.gyp:gl', |
| + '<(DEPTH)/ui/gfx/gfx.gyp:gfx', |
| + ], |
| + 'sources': [ |
| + # Note: sources list duplicated in GN build. |
| + 'in_process_graphics_system.cc', |
| + 'in_process_graphics_system.h', |
| + 'sk_picture_rasterizer.cc', |
| + 'sk_picture_rasterizer.h', |
| + 'skia_runner.cc', |
| + ], |
| + }, |
| + ], |
| +} |