| 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': | 8 'dx_redist_path': |
| 9 '../../o3d-internal/third_party/dx_nov_2007_redist', | 9 '../../o3d-internal/third_party/dx_nov_2007_redist', |
| 10 'dx_redist_exists': '<!(python file_exists.py ../../o3d-internal/third_party
/dx_nov_2007_redist/d3dx9_36.dll)', | 10 'dx_redist_exists': '<!(python file_exists.py ../../o3d-internal/third_party
/dx_nov_2007_redist/d3dx9_36.dll)', |
| 11 'swiftshader_path': | 11 'swiftshader_path': |
| 12 '../../o3d-internal/third_party/swiftshader/files/swiftshader_d3d9.dll', | 12 '../../o3d-internal/third_party/swiftshader/files/swiftshader_d3d9.dll', |
| 13 'swiftshader_exists': | 13 'swiftshader_exists': |
| 14 '<!(python file_exists.py ../../o3d-internal/third_party/swiftshader/fil
es/swiftshader_d3d9.dll)', | 14 '<!(python file_exists.py ../../o3d-internal/third_party/swiftshader/fil
es/swiftshader_d3d9.dll)', |
| 15 }, | 15 }, |
| 16 'includes': [ | 16 'includes': [ |
| 17 'common.gypi', | 17 'common.gypi', |
| 18 ], | 18 ], |
| 19 'targets': [ | 19 'targets': [ |
| 20 { | 20 { |
| 21 'target_name': 'cairo_libs', | 21 'target_name': 'cairo_libs', |
| 22 'type': 'none', | 22 'type': 'none', |
| 23 'conditions': [ | 23 'conditions': [ |
| 24 ['OS=="linux"', | 24 ['OS=="linux"', |
| 25 { | 25 { |
| 26 'all_dependent_settings': { | 26 'all_dependent_settings': { |
| 27 'cflags': [ | 27 'cflags': [ |
| 28 '<!@(pkg-config --cflags cairo)', | 28 '<!@(<(pkg-config) --cflags cairo)', |
| 29 ], | 29 ], |
| 30 'ldflags': [ | 30 'ldflags': [ |
| 31 '<!@(pkg-config --libs-only-L --libs-only-other cairo)', | 31 '<!@(<(pkg-config) --libs-only-L --libs-only-other cairo)', |
| 32 ], | 32 ], |
| 33 'libraries': [ | 33 'libraries': [ |
| 34 '<!@(pkg-config --libs-only-l cairo)', | 34 '<!@(<(pkg-config) --libs-only-l cairo)', |
| 35 ], | 35 ], |
| 36 }, | 36 }, |
| 37 }, | 37 }, |
| 38 ], | 38 ], |
| 39 ['OS=="mac"', | 39 ['OS=="mac"', |
| 40 { | 40 { |
| 41 'dependencies': [ | 41 'dependencies': [ |
| 42 'pixman.gyp:pixman', | 42 'pixman.gyp:pixman', |
| 43 'cairo.gyp:cairo', | 43 'cairo.gyp:cairo', |
| 44 ], | 44 ], |
| (...skipping 354 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 399 }, | 399 }, |
| 400 ], | 400 ], |
| 401 ], | 401 ], |
| 402 } | 402 } |
| 403 | 403 |
| 404 # Local Variables: | 404 # Local Variables: |
| 405 # tab-width:2 | 405 # tab-width:2 |
| 406 # indent-tabs-mode:nil | 406 # indent-tabs-mode:nil |
| 407 # End: | 407 # End: |
| 408 # vim: set expandtab tabstop=2 shiftwidth=2: | 408 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |