| 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 19 matching lines...) Expand all Loading... |
| 30 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry', | 30 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry', |
| 31 '<(DEPTH)/ui/gl/gl.gyp:gl', | 31 '<(DEPTH)/ui/gl/gl.gyp:gl', |
| 32 '<(DEPTH)/ui/gl/gl.gyp:gl_test_support', | 32 '<(DEPTH)/ui/gl/gl.gyp:gl_test_support', |
| 33 '<(DEPTH)/ui/gl/gl.gyp:gl_unittest_utils', | 33 '<(DEPTH)/ui/gl/gl.gyp:gl_unittest_utils', |
| 34 ], | 34 ], |
| 35 'conditions': [ | 35 'conditions': [ |
| 36 ['OS == "android"', { | 36 ['OS == "android"', { |
| 37 'dependencies': [ | 37 'dependencies': [ |
| 38 '<(DEPTH)/testing/android/native_test.gyp:native_test_native_code', | 38 '<(DEPTH)/testing/android/native_test.gyp:native_test_native_code', |
| 39 ], | 39 ], |
| 40 'sources': [ |
| 41 'gl_image_surface_texture_unittest.cc', |
| 42 ], |
| 40 }], | 43 }], |
| 41 ['OS in ("win", "android", "linux")', { | 44 ['OS in ("win", "android", "linux")', { |
| 42 'sources': [ | 45 'sources': [ |
| 43 'egl_api_unittest.cc', | 46 'egl_api_unittest.cc', |
| 44 'test/egl_initialization_displays_unittest.cc', | 47 'test/egl_initialization_displays_unittest.cc', |
| 45 ], | 48 ], |
| 46 }], | 49 }], |
| 47 ['OS == "linux" and use_x11 == 1', { | 50 ['OS == "linux" and use_x11 == 1', { |
| 48 'sources': [ | 51 'sources': [ |
| 49 'glx_api_unittest.cc', | 52 'glx_api_unittest.cc', |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 'dependencies': [ | 121 'dependencies': [ |
| 119 '<(DEPTH)/tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', | 122 '<(DEPTH)/tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', |
| 120 ], | 123 ], |
| 121 }], | 124 }], |
| 122 ], | 125 ], |
| 123 }, | 126 }, |
| 124 ], | 127 ], |
| 125 }], | 128 }], |
| 126 ], | 129 ], |
| 127 } | 130 } |
| OLD | NEW |