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 { |
(...skipping 10 matching lines...) Expand all Loading... |
21 'gl.gyp:gl', | 21 'gl.gyp:gl', |
22 ], | 22 ], |
23 'conditions': [ | 23 'conditions': [ |
24 ['OS == "android"', { | 24 ['OS == "android"', { |
25 'dependencies': [ | 25 'dependencies': [ |
26 '<(DEPTH)/testing/android/native_test.gyp:native_test_native_code', | 26 '<(DEPTH)/testing/android/native_test.gyp:native_test_native_code', |
27 ], | 27 ], |
28 }], | 28 }], |
29 ['OS in ("win", "android", "linux")', { | 29 ['OS in ("win", "android", "linux")', { |
30 'sources': [ | 30 'sources': [ |
| 31 'egl_api_unittest.cc', |
31 'test/egl_initialization_displays_unittest.cc', | 32 'test/egl_initialization_displays_unittest.cc', |
32 ], | 33 ], |
33 'dependencies': [ | |
34 '<(DEPTH)/ui/gl/gl.gyp:gl', | |
35 ], | |
36 'include_dirs': [ | 34 'include_dirs': [ |
37 '<(DEPTH)/third_party/khronos', | 35 '<(DEPTH)/third_party/khronos', |
38 ], | 36 ], |
39 }], | 37 }], |
40 ], | 38 ], |
41 } | 39 } |
42 ], | 40 ], |
43 'conditions': [ | 41 'conditions': [ |
44 ['OS == "android"', { | 42 ['OS == "android"', { |
45 'targets': [ | 43 'targets': [ |
(...skipping 29 matching lines...) Expand all Loading... |
75 'dependencies': [ | 73 'dependencies': [ |
76 '<(DEPTH)/tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', | 74 '<(DEPTH)/tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', |
77 ], | 75 ], |
78 }], | 76 }], |
79 ], | 77 ], |
80 }, | 78 }, |
81 ], | 79 ], |
82 }], | 80 }], |
83 ], | 81 ], |
84 } | 82 } |
OLD | NEW |