| 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 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 179 'dependencies': [ | 179 'dependencies': [ |
| 180 '<(DEPTH)/build/linux/system.gyp:x11', | 180 '<(DEPTH)/build/linux/system.gyp:x11', |
| 181 '<(DEPTH)/build/linux/system.gyp:xcomposite', | 181 '<(DEPTH)/build/linux/system.gyp:xcomposite', |
| 182 '<(DEPTH)/build/linux/system.gyp:xext', | 182 '<(DEPTH)/build/linux/system.gyp:xext', |
| 183 '<(DEPTH)/ui/events/platform/events_platform.gyp:events_platform', | 183 '<(DEPTH)/ui/events/platform/events_platform.gyp:events_platform', |
| 184 '<(DEPTH)/ui/gfx/x/gfx_x11.gyp:gfx_x11', | 184 '<(DEPTH)/ui/gfx/x/gfx_x11.gyp:gfx_x11', |
| 185 ], | 185 ], |
| 186 }], | 186 }], |
| 187 ['OS=="win"', { | 187 ['OS=="win"', { |
| 188 'sources': [ | 188 'sources': [ |
| 189 'angle_platform_impl.cc', | |
| 190 'angle_platform_impl.h', | |
| 191 'gl_bindings_autogen_wgl.cc', | 189 'gl_bindings_autogen_wgl.cc', |
| 192 'gl_bindings_autogen_wgl.h', | 190 'gl_bindings_autogen_wgl.h', |
| 193 'gl_context_wgl.cc', | 191 'gl_context_wgl.cc', |
| 194 'gl_context_wgl.h', | 192 'gl_context_wgl.h', |
| 195 'gl_egl_api_implementation.cc', | 193 'gl_egl_api_implementation.cc', |
| 196 'gl_egl_api_implementation.h', | 194 'gl_egl_api_implementation.h', |
| 197 'gl_surface_wgl.cc', | 195 'gl_surface_wgl.cc', |
| 198 'gl_surface_wgl.h', | 196 'gl_surface_wgl.h', |
| 199 'gl_wgl_api_implementation.cc', | 197 'gl_wgl_api_implementation.cc', |
| 200 'gl_wgl_api_implementation.h', | 198 'gl_wgl_api_implementation.h', |
| 201 ], | 199 ], |
| 202 'dependencies': [ | |
| 203 # TODO(jmadill): Use ANGLE on other platforms. | |
| 204 '<(angle_path)/src/angle.gyp:libEGL', | |
| 205 '<(angle_path)/src/angle.gyp:libGLESv2', | |
| 206 ], | |
| 207 'msvs_settings': { | 200 'msvs_settings': { |
| 208 'VCLinkerTool': { | 201 'VCLinkerTool': { |
| 209 'DelayLoadDLLs': [ | 202 'DelayLoadDLLs': [ |
| 210 'dwmapi.dll', | 203 'dwmapi.dll', |
| 211 ], | 204 ], |
| 212 'AdditionalDependencies': [ | 205 'AdditionalDependencies': [ |
| 213 'dwmapi.lib', | 206 'dwmapi.lib', |
| 214 ], | 207 ], |
| 215 }, | 208 }, |
| 216 }, | 209 }, |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 319 ], | 312 ], |
| 320 'variables': { | 313 'variables': { |
| 321 'jni_gen_package': 'ui/gl', | 314 'jni_gen_package': 'ui/gl', |
| 322 }, | 315 }, |
| 323 'includes': [ '../../build/jni_generator.gypi' ], | 316 'includes': [ '../../build/jni_generator.gypi' ], |
| 324 }, | 317 }, |
| 325 ], | 318 ], |
| 326 }], | 319 }], |
| 327 ], | 320 ], |
| 328 } | 321 } |
| OLD | NEW |