Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(793)

Side by Side Diff: gpu/blink/gpu_blink.gyp

Issue 761243002: Extract WebGraphicsContext3DImpl from webkit/common/gpu. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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 {
6 'targets': [
7 {
8 # GN version: //gpu/blink
9 'target_name': 'gpu_blink',
10 'type': '<(component)',
11 'dependencies': [
12 '../../base/base.gyp:base',
13 '../../gpu/command_buffer/command_buffer.gyp:gles2_utils',
14 '../../gpu/gpu.gyp:command_buffer_common',
15 '../../gpu/gpu.gyp:gles2_c_lib',
16 '../../gpu/gpu.gyp:gles2_implementation',
17 '../../gpu/skia_bindings/skia_bindings.gyp:gpu_skia_bindings',
18 '../../third_party/WebKit/public/blink.gyp:blink',
19 ],
20 'defines': [
21 'GPU_BLINK_IMPLEMENTATION',
22 ],
23 # This sources list is duplicated in //gpu/blink/BUILD.gn
24 'sources': [
25 'gpu_blink_export.h',
26 'webgraphicscontext3d_impl.cc',
27 'webgraphicscontext3d_impl.h',
28 ],
29 },
30 ]
31 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698