| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 | 9 |
| 10 'targets': [ | 10 'targets': [ |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 'gl_initializer_win.cc', | 31 'gl_initializer_win.cc', |
| 32 'gl_initializer_x11.cc', | 32 'gl_initializer_x11.cc', |
| 33 'gl_factory.cc', | 33 'gl_factory.cc', |
| 34 'gl_factory.h', | 34 'gl_factory.h', |
| 35 'gl_factory_android.cc', | 35 'gl_factory_android.cc', |
| 36 'gl_factory_mac.cc', | 36 'gl_factory_mac.cc', |
| 37 'gl_factory_ozone.cc', | 37 'gl_factory_ozone.cc', |
| 38 'gl_factory_win.cc', | 38 'gl_factory_win.cc', |
| 39 'gl_factory_x11.cc', | 39 'gl_factory_x11.cc', |
| 40 'gl_init_export.h', | 40 'gl_init_export.h', |
| 41 'gl_surface_ozone.cc', | |
| 42 'gl_surface_ozone.h', | |
| 43 ], | 41 ], |
| 44 'conditions': [ | 42 'conditions': [ |
| 45 ['OS=="mac"', { | 43 ['OS=="mac"', { |
| 46 'link_settings': { | 44 'link_settings': { |
| 47 'libraries': [ | 45 'libraries': [ |
| 48 '$(SDKROOT)/System/Library/Frameworks/OpenGL.framework', | 46 '$(SDKROOT)/System/Library/Frameworks/OpenGL.framework', |
| 49 ], | 47 ], |
| 50 }, | 48 }, |
| 51 }], | 49 }], |
| 52 ['OS=="win"', { | 50 ['OS=="win"', { |
| (...skipping 22 matching lines...) Expand all Loading... |
| 75 'dependencies': [ | 73 'dependencies': [ |
| 76 '../../ozone/gl/ozone_gl.gyp:ozone_gl', | 74 '../../ozone/gl/ozone_gl.gyp:ozone_gl', |
| 77 '../../ozone/ozone.gyp:ozone', | 75 '../../ozone/ozone.gyp:ozone', |
| 78 '../../ozone/ozone.gyp:ozone_base', | 76 '../../ozone/ozone.gyp:ozone_base', |
| 79 ], | 77 ], |
| 80 }], | 78 }], |
| 81 ], | 79 ], |
| 82 }, | 80 }, |
| 83 ], | 81 ], |
| 84 } | 82 } |
| OLD | NEW |