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_implementation", | |
| 13 "//gpu/command_buffer/client:gles2_c_lib", | |
| 14 "//gpu/skia_bindings", | |
|
piman
2014/12/01 18:32:05
Do you need these last 2 dependencies?
| |
| 15 "//third_party/WebKit/public:blink", | |
| 16 ] | |
| 17 | |
| 18 defines = [ "GPU_BLINK_IMPLEMENTATION" ] | |
| 19 | |
| 20 sources = [ | |
| 21 "gpu_blink_export.h", | |
| 22 ] | |
| 23 } | |
| OLD | NEW |