| 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 'sources': [ | 42 'sources': [ |
| 43 'egl_api_unittest.cc', | 43 'egl_api_unittest.cc', |
| 44 'test/egl_initialization_displays_unittest.cc', | 44 'test/egl_initialization_displays_unittest.cc', |
| 45 ], | 45 ], |
| 46 }], | 46 }], |
| 47 ['OS == "linux" and use_x11 == 1', { | 47 ['OS == "linux" and use_x11 == 1', { |
| 48 'sources': [ | 48 'sources': [ |
| 49 'glx_api_unittest.cc', | 49 'glx_api_unittest.cc', |
| 50 ], | 50 ], |
| 51 }], | 51 }], |
| 52 ['OS == "mac"', { |
| 53 'sources': [ |
| 54 'gl_image_io_surface_unittest.cc', |
| 55 ], |
| 56 }], |
| 52 ['OS == "win"', { | 57 ['OS == "win"', { |
| 53 'sources': [ | 58 'sources': [ |
| 54 'wgl_api_unittest.cc', | 59 'wgl_api_unittest.cc', |
| 55 ], | 60 ], |
| 56 }], | 61 }], |
| 57 ['use_ozone==1', { | 62 ['use_ozone==1', { |
| 58 'dependencies': [ | 63 'dependencies': [ |
| 59 '../ozone/ozone.gyp:ozone', | 64 '../ozone/ozone.gyp:ozone', |
| 60 ], | 65 ], |
| 61 'sources': [ | 66 'sources': [ |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 121 'dependencies': [ | 126 'dependencies': [ |
| 122 '<(DEPTH)/tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', | 127 '<(DEPTH)/tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', |
| 123 ], | 128 ], |
| 124 }], | 129 }], |
| 125 ], | 130 ], |
| 126 }, | 131 }, |
| 127 ], | 132 ], |
| 128 }], | 133 }], |
| 129 ], | 134 ], |
| 130 } | 135 } |
| OLD | NEW |