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 583 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
594 'plugin/webplugin_proxy.h', | 594 'plugin/webplugin_proxy.h', |
595 ], | 595 ], |
596 # These are layered in conditionals in the event other platforms | 596 # These are layered in conditionals in the event other platforms |
597 # end up using this module as well. | 597 # end up using this module as well. |
598 'conditions': [ | 598 'conditions': [ |
599 ['OS=="win"', { | 599 ['OS=="win"', { |
600 'include_dirs': [ | 600 'include_dirs': [ |
601 '<(DEPTH)/third_party/wtl/include', | 601 '<(DEPTH)/third_party/wtl/include', |
602 ], | 602 ], |
603 }], | 603 }], |
604 ['enable_gpu==1', { | |
605 'dependencies': [ | |
606 '../gpu/gpu.gyp:command_buffer_service', | |
607 ], | |
608 'sources': [ | |
609 'plugin/command_buffer_stub.cc', | |
610 'plugin/command_buffer_stub.h', | |
611 'plugin/command_buffer_stub_win.cc', | |
612 ], | |
613 },], | |
614 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris"', { | 604 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris"', { |
615 'dependencies': [ | 605 'dependencies': [ |
616 '../build/linux/system.gyp:gtk', | 606 '../build/linux/system.gyp:gtk', |
617 ], | 607 ], |
618 }], | 608 }], |
619 ], | 609 ], |
620 }, | 610 }, |
621 { | 611 { |
622 'target_name': 'utility', | 612 'target_name': 'utility', |
623 'type': '<(library)', | 613 'type': '<(library)', |
(...skipping 1298 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1922 }], # targets | 1912 }], # targets |
1923 }], # OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris" | 1913 }], # OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris" |
1924 ], # 'conditions' | 1914 ], # 'conditions' |
1925 } | 1915 } |
1926 | 1916 |
1927 # Local Variables: | 1917 # Local Variables: |
1928 # tab-width:2 | 1918 # tab-width:2 |
1929 # indent-tabs-mode:nil | 1919 # indent-tabs-mode:nil |
1930 # End: | 1920 # End: |
1931 # vim: set expandtab tabstop=2 shiftwidth=2: | 1921 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |