OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 # These are defined here because we need to build this library twice. Once | 8 # These are defined here because we need to build this library twice. Once |
9 # with extra parameter checking. Once with no parameter checking to be 100% | 9 # with extra parameter checking. Once with no parameter checking to be 100% |
10 # OpenGL ES 2.0 compliant for the conformance tests. | 10 # OpenGL ES 2.0 compliant for the conformance tests. |
11 'gles2_c_lib_source_files': [ | 11 'gles2_c_lib_source_files': [ |
12 'command_buffer/client/gles2_c_lib.cc', | 12 'command_buffer/client/gles2_c_lib.cc', |
13 'command_buffer/client/gles2_c_lib_autogen.h', | 13 'command_buffer/client/gles2_c_lib_autogen.h', |
14 'command_buffer/client/gles2_lib.h', | 14 'command_buffer/client/gles2_lib.h', |
15 'command_buffer/client/gles2_lib.cc', | 15 'command_buffer/client/gles2_lib.cc', |
16 ], | 16 ], |
17 # These are defined here because we need to build this library twice. Once | 17 # These are defined here because we need to build this library twice. Once |
18 # with without support for client side arrays and once with for pepper and | 18 # with without support for client side arrays and once with for pepper and |
19 # the OpenGL ES 2.0 compliant for the conformance tests. | 19 # the OpenGL ES 2.0 compliant for the conformance tests. |
20 'gles2_implementation_source_files': [ | 20 'gles2_implementation_source_files': [ |
21 'command_buffer/client/gles2_implementation_autogen.h', | 21 'command_buffer/client/gles2_implementation_autogen.h', |
22 'command_buffer/client/gles2_implementation.cc', | 22 'command_buffer/client/gles2_implementation.cc', |
23 'command_buffer/client/gles2_implementation.h', | 23 'command_buffer/client/gles2_implementation.h', |
24 ] | 24 ] |
25 }, | 25 }, |
26 'targets': [ | 26 'targets': [ |
27 { | 27 { |
| 28 'target_name': 'gpu_common', |
| 29 'type': 'static_library', |
| 30 'dependencies': [ |
| 31 '../base/base.gyp:base', |
| 32 ], |
| 33 'include_dirs': [ |
| 34 '..', |
| 35 ], |
| 36 'sources': [ |
| 37 'common/gpu_trace_event.cc', |
| 38 'common/gpu_trace_event.h', |
| 39 ], |
| 40 }, |
| 41 { |
28 'target_name': 'command_buffer_common', | 42 'target_name': 'command_buffer_common', |
29 'type': 'static_library', | 43 'type': 'static_library', |
30 'include_dirs': [ | 44 'include_dirs': [ |
31 '.', | 45 '.', |
32 ], | 46 ], |
33 'all_dependent_settings': { | 47 'all_dependent_settings': { |
34 'include_dirs': [ | 48 'include_dirs': [ |
35 '.', | 49 '.', |
36 ], | 50 ], |
37 }, | 51 }, |
(...skipping 347 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
385 }, | 399 }, |
386 ], | 400 ], |
387 ], | 401 ], |
388 } | 402 } |
389 | 403 |
390 # Local Variables: | 404 # Local Variables: |
391 # tab-width:2 | 405 # tab-width:2 |
392 # indent-tabs-mode:nil | 406 # indent-tabs-mode:nil |
393 # End: | 407 # End: |
394 # vim: set expandtab tabstop=2 shiftwidth=2: | 408 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |