| OLD | NEW |
| 1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 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 'variables': { | 5 'variables': { |
| 6 'chromium_code': 1, | 6 'chromium_code': 1, |
| 7 | 7 |
| 8 'variables': { | 8 'variables': { |
| 9 'version_py_path': 'tools/build/version.py', | 9 'version_py_path': 'tools/build/version.py', |
| 10 'version_path': 'VERSION', | 10 'version_path': 'VERSION', |
| (...skipping 721 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 732 'input': 'Aug2009_d3dx9_42_x86.cab', | 732 'input': 'Aug2009_d3dx9_42_x86.cab', |
| 733 'output': 'd3dx9_42.dll', | 733 'output': 'd3dx9_42.dll', |
| 734 }, | 734 }, |
| 735 'inputs': [ | 735 'inputs': [ |
| 736 '../third_party/directxsdk/files/Redist/<(input)', | 736 '../third_party/directxsdk/files/Redist/<(input)', |
| 737 ], | 737 ], |
| 738 'outputs': [ | 738 'outputs': [ |
| 739 '<(PRODUCT_DIR)/<(output)', | 739 '<(PRODUCT_DIR)/<(output)', |
| 740 ], | 740 ], |
| 741 'action': [ | 741 'action': [ |
| 742 'expand', | 742 'python', |
| 743 '../build/extract_from_cab.py', |
| 743 '..\\third_party\\directxsdk\\files\\Redist\\<(input)', | 744 '..\\third_party\\directxsdk\\files\\Redist\\<(input)', |
| 744 '-F:<(output)', | 745 '<(output)', |
| 745 '<(PRODUCT_DIR)', | 746 '<(PRODUCT_DIR)', |
| 746 ], | 747 ], |
| 747 }, | 748 }, |
| 748 ], | 749 ], |
| 749 }], | 750 }], |
| 750 ['OS=="linux" and target_arch!="arm"', { | 751 ['OS=="linux" and target_arch!="arm"', { |
| 751 'sources': [ | 752 'sources': [ |
| 752 'gpu/gpu_backing_store_glx.cc', | 753 'gpu/gpu_backing_store_glx.cc', |
| 753 'gpu/gpu_backing_store_glx.h', | 754 'gpu/gpu_backing_store_glx.h', |
| 754 'gpu/gpu_backing_store_glx_context.cc', | 755 'gpu/gpu_backing_store_glx_context.cc', |
| (...skipping 1119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1874 }], # targets | 1875 }], # targets |
| 1875 }], # OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris" | 1876 }], # OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris" |
| 1876 ], # 'conditions' | 1877 ], # 'conditions' |
| 1877 } | 1878 } |
| 1878 | 1879 |
| 1879 # Local Variables: | 1880 # Local Variables: |
| 1880 # tab-width:2 | 1881 # tab-width:2 |
| 1881 # indent-tabs-mode:nil | 1882 # indent-tabs-mode:nil |
| 1882 # End: | 1883 # End: |
| 1883 # vim: set expandtab tabstop=2 shiftwidth=2: | 1884 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |