OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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. |
(...skipping 20 matching lines...) Expand all Loading... |
31 'command_buffer/client/gles2_implementation.h', | 31 'command_buffer/client/gles2_implementation.h', |
32 'command_buffer/client/gles2_implementation_impl_autogen.h', | 32 'command_buffer/client/gles2_implementation_impl_autogen.h', |
33 'command_buffer/client/gles2_interface.h', | 33 'command_buffer/client/gles2_interface.h', |
34 'command_buffer/client/gles2_interface.cc', | 34 'command_buffer/client/gles2_interface.cc', |
35 'command_buffer/client/program_info_manager.cc', | 35 'command_buffer/client/program_info_manager.cc', |
36 'command_buffer/client/program_info_manager.h', | 36 'command_buffer/client/program_info_manager.h', |
37 'command_buffer/client/query_tracker.cc', | 37 'command_buffer/client/query_tracker.cc', |
38 'command_buffer/client/query_tracker.h', | 38 'command_buffer/client/query_tracker.h', |
39 'command_buffer/client/share_group.cc', | 39 'command_buffer/client/share_group.cc', |
40 'command_buffer/client/share_group.h', | 40 'command_buffer/client/share_group.h', |
| 41 'command_buffer/client/vertex_array_object_manager.cc', |
| 42 'command_buffer/client/vertex_array_object_manager.h', |
41 ] | 43 ] |
42 }, | 44 }, |
43 'conditions': [ | 45 'conditions': [ |
44 # Special target to wrap a gtest_target_type==shared_library | 46 # Special target to wrap a gtest_target_type==shared_library |
45 # gpu_unittests into an android apk for execution. | 47 # gpu_unittests into an android apk for execution. |
46 ['OS == "android" and gtest_target_type == "shared_library"', { | 48 ['OS == "android" and gtest_target_type == "shared_library"', { |
47 'targets': [ | 49 'targets': [ |
48 { | 50 { |
49 'target_name': 'gpu_unittests_apk', | 51 'target_name': 'gpu_unittests_apk', |
50 'type': 'none', | 52 'type': 'none', |
51 'dependencies': [ | 53 'dependencies': [ |
52 'gpu_unittests', | 54 'gpu_unittests', |
53 ], | 55 ], |
54 'variables': { | 56 'variables': { |
55 'test_suite_name': 'gpu_unittests', | 57 'test_suite_name': 'gpu_unittests', |
56 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)gpu_unitt
ests<(SHARED_LIB_SUFFIX)', | 58 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)gpu_unitt
ests<(SHARED_LIB_SUFFIX)', |
57 }, | 59 }, |
58 'includes': [ '../build/apk_test.gypi' ], | 60 'includes': [ '../build/apk_test.gypi' ], |
59 }, | 61 }, |
60 ], | 62 ], |
61 }], | 63 }], |
62 ], | 64 ], |
63 } | 65 } |
OLD | NEW |