| 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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 ['OS == "android" and gtest_target_type == "shared_library"', { | 54 ['OS == "android" and gtest_target_type == "shared_library"', { |
| 55 'targets': [ | 55 'targets': [ |
| 56 { | 56 { |
| 57 'target_name': 'gpu_unittests_apk', | 57 'target_name': 'gpu_unittests_apk', |
| 58 'type': 'none', | 58 'type': 'none', |
| 59 'dependencies': [ | 59 'dependencies': [ |
| 60 'gpu_unittests', | 60 'gpu_unittests', |
| 61 ], | 61 ], |
| 62 'variables': { | 62 'variables': { |
| 63 'test_suite_name': 'gpu_unittests', | 63 'test_suite_name': 'gpu_unittests', |
| 64 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)gpu_unitt
ests<(SHARED_LIB_SUFFIX)', | |
| 65 }, | 64 }, |
| 66 'includes': [ '../build/apk_test.gypi' ], | 65 'includes': [ '../build/apk_test.gypi' ], |
| 67 }, | 66 }, |
| 68 ], | 67 ], |
| 69 }], | 68 }], |
| 70 ], | 69 ], |
| 71 } | 70 } |
| OLD | NEW |