Chromium Code Reviews| 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': { | |
|
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.
| |
| 7 }, | |
| 8 'targets': [ | |
| 9 { | |
| 10 # GN version: //gpu:skia_runner | |
| 11 'target_name': 'skia_runner', | |
| 12 'type': 'executable', | |
| 13 'dependencies': [ | |
| 14 '<(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.
| |
| 15 '<(DEPTH)/gpu/command_buffer/command_buffer.gyp:gles2_utils', | |
| 16 '<(DEPTH)/gpu/gpu.gyp:command_buffer_service', | |
| 17 '<(DEPTH)/gpu/gpu.gyp:gles2_implementation', | |
| 18 '<(DEPTH)/gpu/gpu.gyp:gl_in_process_context', | |
| 19 '<(DEPTH)/gpu/skia_bindings/skia_bindings.gyp:gpu_skia_bindings', | |
| 20 '<(DEPTH)/skia/skia.gyp:skia', | |
| 21 '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink', | |
| 22 '<(DEPTH)/ui/gl/gl.gyp:gl', | |
| 23 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', | |
| 24 ], | |
| 25 'sources': [ | |
| 26 # Note: sources list duplicated in GN build. | |
| 27 'in_process_graphics_system.cc', | |
| 28 'in_process_graphics_system.h', | |
| 29 'sk_picture_rasterizer.cc', | |
| 30 'sk_picture_rasterizer.h', | |
| 31 'skia_runner.cc', | |
| 32 ], | |
| 33 }, | |
| 34 ], | |
| 35 } | |
| OLD | NEW |