OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 }, | 8 }, |
9 'targets': [ | 9 'targets': [ |
10 { | 10 { |
11 'target_name': 'gl_unittests', | 11 'target_name': 'gl_unittests', |
12 'type': '<(gtest_target_type)', | 12 'type': '<(gtest_target_type)', |
13 'sources': [ | 13 'sources': [ |
14 'test/run_all_unittests.cc', | 14 'test/run_all_unittests.cc', |
| 15 'gl_api_unittest.cc', |
15 ], | 16 ], |
16 'dependencies': [ | 17 'dependencies': [ |
17 '<(DEPTH)/base/base.gyp:base', | 18 '<(DEPTH)/base/base.gyp:base', |
18 '<(DEPTH)/base/base.gyp:test_support_base', | 19 '<(DEPTH)/base/base.gyp:test_support_base', |
19 '<(DEPTH)/testing/gtest.gyp:gtest', | 20 '<(DEPTH)/testing/gtest.gyp:gtest', |
| 21 'gl.gyp:gl', |
20 ], | 22 ], |
21 'conditions': [ | 23 'conditions': [ |
22 ['OS == "android"', { | 24 ['OS == "android"', { |
23 'dependencies': [ | 25 'dependencies': [ |
24 '<(DEPTH)/testing/android/native_test.gyp:native_test_native_code', | 26 '<(DEPTH)/testing/android/native_test.gyp:native_test_native_code', |
25 ], | 27 ], |
26 }], | 28 }], |
27 ], | 29 ], |
28 } | 30 } |
29 ], | 31 ], |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
62 'dependencies': [ | 64 'dependencies': [ |
63 '<(DEPTH)/tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', | 65 '<(DEPTH)/tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', |
64 ], | 66 ], |
65 }], | 67 }], |
66 ], | 68 ], |
67 }, | 69 }, |
68 ], | 70 ], |
69 }], | 71 }], |
70 ], | 72 ], |
71 } | 73 } |
OLD | NEW |