| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 218 '<(DEPTH)/third_party/angle/src/angle.gyp:libEGL', | 218 '<(DEPTH)/third_party/angle/src/angle.gyp:libEGL', |
| 219 '<(DEPTH)/third_party/angle/src/angle.gyp:libGLESv2', | 219 '<(DEPTH)/third_party/angle/src/angle.gyp:libGLESv2', |
| 220 ], | 220 ], |
| 221 }], | 221 }], |
| 222 ['OS=="mac"', { | 222 ['OS=="mac"', { |
| 223 'sources': [ | 223 'sources': [ |
| 224 'gl_context_cgl.cc', | 224 'gl_context_cgl.cc', |
| 225 'gl_context_cgl.h', | 225 'gl_context_cgl.h', |
| 226 'gl_fence_apple.cc', | 226 'gl_fence_apple.cc', |
| 227 'gl_fence_apple.h', | 227 'gl_fence_apple.h', |
| 228 'gl_image_io_surface.cc', | 228 'gl_image_io_surface.mm', |
| 229 'gl_image_io_surface.h', | 229 'gl_image_io_surface.h', |
| 230 'scoped_cgl.cc', | 230 'scoped_cgl.cc', |
| 231 'scoped_cgl.h', | 231 'scoped_cgl.h', |
| 232 ], | 232 ], |
| 233 'link_settings': { | 233 'link_settings': { |
| 234 'libraries': [ | 234 'libraries': [ |
| 235 '$(SDKROOT)/System/Library/Frameworks/IOSurface.framework', | 235 '$(SDKROOT)/System/Library/Frameworks/IOSurface.framework', |
| 236 '$(SDKROOT)/System/Library/Frameworks/OpenGL.framework', | 236 '$(SDKROOT)/System/Library/Frameworks/OpenGL.framework', |
| 237 '$(SDKROOT)/System/Library/Frameworks/Quartz.framework', |
| 237 ], | 238 ], |
| 238 }, | 239 }, |
| 239 }], | 240 }], |
| 240 ['OS=="android"', { | 241 ['OS=="android"', { |
| 241 'dependencies': [ | 242 'dependencies': [ |
| 242 'gl_jni_headers', | 243 'gl_jni_headers', |
| 243 '../android/ui_android.gyp:ui_java', | 244 '../android/ui_android.gyp:ui_java', |
| 244 ], | 245 ], |
| 245 'sources': [ | 246 'sources': [ |
| 246 'gl_image_surface_texture.cc', | 247 'gl_image_surface_texture.cc', |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 340 ], | 341 ], |
| 341 'variables': { | 342 'variables': { |
| 342 'jni_gen_package': 'ui/gl', | 343 'jni_gen_package': 'ui/gl', |
| 343 }, | 344 }, |
| 344 'includes': [ '../../build/jni_generator.gypi' ], | 345 'includes': [ '../../build/jni_generator.gypi' ], |
| 345 }, | 346 }, |
| 346 ], | 347 ], |
| 347 }], | 348 }], |
| 348 ], | 349 ], |
| 349 } | 350 } |
| OLD | NEW |