| 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 17 matching lines...) Expand all Loading... |
| 28 'gl_initializer_win.cc', | 28 'gl_initializer_win.cc', |
| 29 'gl_initializer_x11.cc', | 29 'gl_initializer_x11.cc', |
| 30 'gl_factory.cc', | 30 'gl_factory.cc', |
| 31 'gl_factory.h', | 31 'gl_factory.h', |
| 32 'gl_factory_android.cc', | 32 'gl_factory_android.cc', |
| 33 'gl_factory_mac.cc', | 33 'gl_factory_mac.cc', |
| 34 'gl_factory_ozone.cc', | 34 'gl_factory_ozone.cc', |
| 35 'gl_factory_win.cc', | 35 'gl_factory_win.cc', |
| 36 'gl_factory_x11.cc', | 36 'gl_factory_x11.cc', |
| 37 'gl_init_export.h', | 37 'gl_init_export.h', |
| 38 'gl_surface_ozone.cc', |
| 39 'gl_surface_ozone.h', |
| 38 ], | 40 ], |
| 39 'conditions': [ | 41 'conditions': [ |
| 40 ['OS=="mac"', { | 42 ['OS=="mac"', { |
| 41 'link_settings': { | 43 'link_settings': { |
| 42 'libraries': [ | 44 'libraries': [ |
| 43 '$(SDKROOT)/System/Library/Frameworks/OpenGL.framework', | 45 '$(SDKROOT)/System/Library/Frameworks/OpenGL.framework', |
| 44 ], | 46 ], |
| 45 }, | 47 }, |
| 46 }], | 48 }], |
| 49 ['use_ozone==1', { |
| 50 'dependencies': [ |
| 51 '../../ozone/ozone.gyp:ozone', |
| 52 ], |
| 53 }], |
| 47 ], | 54 ], |
| 48 }, | 55 }, |
| 49 ], | 56 ], |
| 50 } | 57 } |
| OLD | NEW |