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 { | |
6 'variables': { | |
7 'chromium_code': 1, | |
8 }, | |
9 'targets': [ | |
10 { | |
11 # GN version: //gpu/blink | |
12 'target_name': 'gpu_blink', | |
13 'type': '<(component)', | |
14 'dependencies': [ | |
15 '../../base/base.gyp:base', | |
16 '../../gpu/command_buffer/command_buffer.gyp:gles2_utils', | |
17 '../../gpu/gpu.gyp:command_buffer_common', | |
18 '../../gpu/gpu.gyp:gles2_c_lib', | |
19 '../../gpu/gpu.gyp:gles2_implementation', | |
20 '../../gpu/skia_bindings/skia_bindings.gyp:gpu_skia_bindings', | |
21 '../../third_party/WebKit/public/blink.gyp:blink_minimal', | |
22 ], | |
23 'defines': [ | |
24 'GPU_BLINK_IMPLEMENTATION', | |
25 ], | |
26 # This sources list is duplicated in //gpu/blink/BUILD.gn | |
27 'sources': [ | |
28 'gpu_blink_export.h', | |
29 'webgraphicscontext3d_impl.cc', | |
30 'webgraphicscontext3d_impl.h', | |
31 ], | |
32 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | |
33 'msvs_disabled_warnings': [ 4267, ], | |
34 }, | |
35 ] | |
36 } | |
OLD | NEW |