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 'gpu_timing_unittest.cc', | 15 'gpu_timing_unittest.cc', |
16 'gl_api_unittest.cc', | 16 'gl_api_unittest.cc', |
| 17 'gl_image_unittest.cc', |
17 ], | 18 ], |
18 'include_dirs': [ | 19 'include_dirs': [ |
19 '<(DEPTH)/third_party/khronos', | 20 '<(DEPTH)/third_party/khronos', |
20 ], | 21 ], |
21 'dependencies': [ | 22 'dependencies': [ |
22 '<(DEPTH)/base/base.gyp:base', | 23 '<(DEPTH)/base/base.gyp:base', |
23 '<(DEPTH)/base/base.gyp:test_support_base', | 24 '<(DEPTH)/base/base.gyp:test_support_base', |
| 25 '<(DEPTH)/skia/skia.gyp:skia', |
24 '<(DEPTH)/testing/gmock.gyp:gmock', | 26 '<(DEPTH)/testing/gmock.gyp:gmock', |
25 '<(DEPTH)/testing/gtest.gyp:gtest', | 27 '<(DEPTH)/testing/gtest.gyp:gtest', |
| 28 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', |
26 '<(DEPTH)/ui/gl/gl.gyp:gl', | 29 '<(DEPTH)/ui/gl/gl.gyp:gl', |
27 '<(DEPTH)/ui/gl/gl.gyp:gl_test_support', | 30 '<(DEPTH)/ui/gl/gl.gyp:gl_test_support', |
28 '<(DEPTH)/ui/gl/gl.gyp:gl_unittest_utils', | 31 '<(DEPTH)/ui/gl/gl.gyp:gl_unittest_utils', |
29 ], | 32 ], |
30 'conditions': [ | 33 'conditions': [ |
31 ['OS == "android"', { | 34 ['OS == "android"', { |
32 'dependencies': [ | 35 'dependencies': [ |
33 '<(DEPTH)/testing/android/native_test.gyp:native_test_native_code', | 36 '<(DEPTH)/testing/android/native_test.gyp:native_test_native_code', |
34 ], | 37 ], |
35 }], | 38 }], |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
87 'dependencies': [ | 90 'dependencies': [ |
88 '<(DEPTH)/tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', | 91 '<(DEPTH)/tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', |
89 ], | 92 ], |
90 }], | 93 }], |
91 ], | 94 ], |
92 }, | 95 }, |
93 ], | 96 ], |
94 }], | 97 }], |
95 ], | 98 ], |
96 } | 99 } |
OLD | NEW |