Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 # Copyright 2014 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 # GYP version: //gpu/blink/gpu_blink.gyp:gpu_blink | |
| 6 component("blink") { | |
| 7 output_name = "gpu_blink" | |
| 8 | |
| 9 deps = [ | |
| 10 "//base", | |
| 11 "//gpu", | |
| 12 "//gpu/command_buffer/client:gles2_c_lib", | |
| 13 "//gpu/command_buffer/client:gles2_implementation", | |
| 14 "//gpu/skia_bindings", | |
| 15 "//skia", | |
| 16 "//third_party/WebKit/public:blink_minimal", | |
| 17 ] | |
| 18 | |
| 19 defines = [ "GPU_BLINK_IMPLEMENTATION" ] | |
| 20 | |
| 21 sources = [ | |
|
jamesr
2014/12/03 22:19:52
sources should go right after output_name and befo
tfarina
2014/12/04 00:21:32
Done.
| |
| 22 "gpu_blink_export.h", | |
| 23 "webgraphicscontext3d_impl.cc", | |
| 24 "webgraphicscontext3d_impl.h", | |
| 25 ] | |
| 26 } | |
| OLD | NEW |