| 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 { | 5 { |
| 6 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 | 8 |
| 9 'variables': { | 9 'variables': { |
| 10 'version_py_path': 'tools/build/version.py', | 10 'version_py_path': 'tools/build/version.py', |
| (...skipping 584 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 595 # These are layered in conditionals in the event other platforms | 595 # These are layered in conditionals in the event other platforms |
| 596 # end up using this module as well. | 596 # end up using this module as well. |
| 597 'conditions': [ | 597 'conditions': [ |
| 598 ['OS=="win"', { | 598 ['OS=="win"', { |
| 599 'defines': [ | 599 'defines': [ |
| 600 '__STD_C', | 600 '__STD_C', |
| 601 '_CRT_SECURE_NO_DEPRECATE', | 601 '_CRT_SECURE_NO_DEPRECATE', |
| 602 '_SCL_SECURE_NO_DEPRECATE', | 602 '_SCL_SECURE_NO_DEPRECATE', |
| 603 ], | 603 ], |
| 604 'include_dirs': [ | 604 'include_dirs': [ |
| 605 'third_party/wtl/include', | 605 '<(DEPTH)/third_party/wtl/include', |
| 606 ], | 606 ], |
| 607 }], | 607 }], |
| 608 ['enable_gpu==1', { | 608 ['enable_gpu==1', { |
| 609 'dependencies': [ | 609 'dependencies': [ |
| 610 '../gpu/gpu.gyp:command_buffer_service', | 610 '../gpu/gpu.gyp:command_buffer_service', |
| 611 ], | 611 ], |
| 612 'sources': [ | 612 'sources': [ |
| 613 'plugin/command_buffer_stub.cc', | 613 'plugin/command_buffer_stub.cc', |
| 614 'plugin/command_buffer_stub.h', | 614 'plugin/command_buffer_stub.h', |
| 615 'plugin/command_buffer_stub_win.cc', | 615 'plugin/command_buffer_stub_win.cc', |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 682 'gpu/gpu_thread.h', | 682 'gpu/gpu_thread.h', |
| 683 'gpu/gpu_view_win.cc', | 683 'gpu/gpu_view_win.cc', |
| 684 'gpu/gpu_view_win.h', | 684 'gpu/gpu_view_win.h', |
| 685 ], | 685 ], |
| 686 'include_dirs': [ | 686 'include_dirs': [ |
| 687 '..', | 687 '..', |
| 688 ], | 688 ], |
| 689 'conditions': [ | 689 'conditions': [ |
| 690 ['OS=="win"', { | 690 ['OS=="win"', { |
| 691 'include_dirs': [ | 691 'include_dirs': [ |
| 692 'third_party/wtl/include', | 692 '<(DEPTH)/third_party/wtl/include', |
| 693 ], | 693 ], |
| 694 }], | 694 }], |
| 695 ['OS=="linux" and target_arch!="arm"', { | 695 ['OS=="linux" and target_arch!="arm"', { |
| 696 'sources': [ | 696 'sources': [ |
| 697 'gpu/gpu_backing_store_glx.cc', | 697 'gpu/gpu_backing_store_glx.cc', |
| 698 'gpu/gpu_backing_store_glx.h', | 698 'gpu/gpu_backing_store_glx.h', |
| 699 'gpu/gpu_backing_store_glx_context.cc', | 699 'gpu/gpu_backing_store_glx_context.cc', |
| 700 'gpu/gpu_backing_store_glx_context.h', | 700 'gpu/gpu_backing_store_glx_context.h', |
| 701 'gpu/gpu_view_x.cc', | 701 'gpu/gpu_view_x.cc', |
| 702 'gpu/gpu_view_x.h', | 702 'gpu/gpu_view_x.h', |
| (...skipping 1005 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1708 }], # targets | 1708 }], # targets |
| 1709 }], # OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris" | 1709 }], # OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris" |
| 1710 ], # 'conditions' | 1710 ], # 'conditions' |
| 1711 } | 1711 } |
| 1712 | 1712 |
| 1713 # Local Variables: | 1713 # Local Variables: |
| 1714 # tab-width:2 | 1714 # tab-width:2 |
| 1715 # indent-tabs-mode:nil | 1715 # indent-tabs-mode:nil |
| 1716 # End: | 1716 # End: |
| 1717 # vim: set expandtab tabstop=2 shiftwidth=2: | 1717 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |