| OLD | NEW |
| 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 'includes': [ | 6 'includes': [ |
| 7 '../third_party/WebKit/WebKit/chromium/features.gypi', | 7 '../third_party/WebKit/WebKit/chromium/features.gypi', |
| 8 '../third_party/WebKit/WebCore/WebCore.gypi', | 8 '../third_party/WebKit/WebCore/WebCore.gypi', |
| 9 ], | 9 ], |
| 10 'variables': { | 10 'variables': { |
| (...skipping 264 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 275 # Conditionally compile in GLEW and our GraphicsContext3D implementati
on. | 275 # Conditionally compile in GLEW and our GraphicsContext3D implementati
on. |
| 276 'sources+': [ | 276 'sources+': [ |
| 277 'api/src/GraphicsContext3D.cpp', | 277 'api/src/GraphicsContext3D.cpp', |
| 278 '../third_party/glew/src/glew.c' | 278 '../third_party/glew/src/glew.c' |
| 279 ], | 279 ], |
| 280 'include_dirs+': [ | 280 'include_dirs+': [ |
| 281 '../third_party/glew/include' | 281 '../third_party/glew/include' |
| 282 ], | 282 ], |
| 283 'defines+': [ | 283 'defines+': [ |
| 284 'GLEW_STATIC=1', | 284 'GLEW_STATIC=1', |
| 285 'GLEW_NO_GLU=1', |
| 285 ], | 286 ], |
| 286 'conditions': [ | 287 'conditions': [ |
| 287 ['OS=="win"', { | 288 ['OS=="win"', { |
| 288 'link_settings': { | 289 'link_settings': { |
| 289 'libraries': [ | 290 'libraries': [ |
| 290 '-lopengl32.lib', | 291 '-lopengl32.lib', |
| 291 ], | 292 ], |
| 292 }, | 293 }, |
| 293 }], | 294 }], |
| 294 ['OS=="mac"', { | 295 ['OS=="mac"', { |
| (...skipping 462 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 757 ], | 758 ], |
| 758 'outputs': [ | 759 'outputs': [ |
| 759 '<(PRODUCT_DIR)/resources/inspector/devtools.html', | 760 '<(PRODUCT_DIR)/resources/inspector/devtools.html', |
| 760 ], | 761 ], |
| 761 'action': ['python', '<@(_inputs)', '<@(_outputs)', '<@(devtools_files
)'], | 762 'action': ['python', '<@(_inputs)', '<@(_outputs)', '<@(devtools_files
)'], |
| 762 }, | 763 }, |
| 763 ], | 764 ], |
| 764 } | 765 } |
| 765 ], # targets | 766 ], # targets |
| 766 } | 767 } |
| OLD | NEW |