| 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 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 'dx_redist_path': '../../o3d-internal/third_party/dx_nov_2007_redist', | 8 'dx_redist_path': '../../o3d-internal/third_party/dx_nov_2007_redist', |
| 9 'dx_redist_exists': '<!(python file_exists.py ../../o3d-internal/third_party
/dx_nov_2007_redist/d3dx9_36.dll)', | 9 'dx_redist_exists': '<!(python file_exists.py ../../o3d-internal/third_party
/dx_nov_2007_redist/d3dx9_36.dll)', |
| 10 }, | 10 }, |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 }, | 50 }, |
| 51 ], | 51 ], |
| 52 [ 'OS=="win"', | 52 [ 'OS=="win"', |
| 53 { | 53 { |
| 54 'all_dependent_settings': { | 54 'all_dependent_settings': { |
| 55 'libraries': [ | 55 'libraries': [ |
| 56 '-lOpenGL32.lib', | 56 '-lOpenGL32.lib', |
| 57 '../../<(glewdir)/lib/glew32.lib', | 57 '../../<(glewdir)/lib/glew32.lib', |
| 58 ], | 58 ], |
| 59 }, | 59 }, |
| 60 'copies': [ |
| 61 { |
| 62 'destination': '<(PRODUCT_DIR)', |
| 63 'files': [ |
| 64 "../../<(glewdir)/bin/glew32.dll", |
| 65 ] |
| 66 }, |
| 67 ], |
| 60 }, | 68 }, |
| 61 ], | 69 ], |
| 62 ], | 70 ], |
| 63 }, | 71 }, |
| 64 { | 72 { |
| 65 'target_name': 'cg_libs', | 73 'target_name': 'cg_libs', |
| 66 'type': 'none', | 74 'type': 'none', |
| 67 'hard_dependency': 1, | 75 'hard_dependency': 1, |
| 68 'all_dependent_settings': { | 76 'all_dependent_settings': { |
| 69 'include_dirs': [ | 77 'include_dirs': [ |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 184 } | 192 } |
| 185 ], | 193 ], |
| 186 ], | 194 ], |
| 187 } | 195 } |
| 188 | 196 |
| 189 # Local Variables: | 197 # Local Variables: |
| 190 # tab-width:2 | 198 # tab-width:2 |
| 191 # indent-tabs-mode:nil | 199 # indent-tabs-mode:nil |
| 192 # End: | 200 # End: |
| 193 # vim: set expandtab tabstop=2 shiftwidth=2: | 201 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |