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 | 8 |
9 'variables': { | 9 'variables': { |
10 'version_py_path': 'tools/build/version.py', | 10 'version_py_path': 'tools/build/version.py', |
(...skipping 490 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
501 'common/css_colors.h', | 501 'common/css_colors.h', |
502 'common/db_message_filter.cc', | 502 'common/db_message_filter.cc', |
503 'common/db_message_filter.h', | 503 'common/db_message_filter.h', |
504 'common/debug_flags.cc', | 504 'common/debug_flags.cc', |
505 'common/debug_flags.h', | 505 'common/debug_flags.h', |
506 'common/devtools_messages.h', | 506 'common/devtools_messages.h', |
507 'common/devtools_messages_internal.h', | 507 'common/devtools_messages_internal.h', |
508 'common/dom_storage_type.h', | 508 'common/dom_storage_type.h', |
509 'common/filter_policy.h', | 509 'common/filter_policy.h', |
510 'common/gears_api.h', | 510 'common/gears_api.h', |
| 511 'common/gpu_plugin.cc', |
| 512 'common/gpu_plugin.h', |
511 'common/gtk_tree.cc', | 513 'common/gtk_tree.cc', |
512 'common/gtk_tree.h', | 514 'common/gtk_tree.h', |
513 'common/gtk_util.cc', | 515 'common/gtk_util.cc', |
514 'common/gtk_util.h', | 516 'common/gtk_util.h', |
515 'common/histogram_synchronizer.cc', | 517 'common/histogram_synchronizer.cc', |
516 'common/histogram_synchronizer.h', | 518 'common/histogram_synchronizer.h', |
517 'common/important_file_writer.cc', | 519 'common/important_file_writer.cc', |
518 'common/important_file_writer.h', | 520 'common/important_file_writer.h', |
519 'common/jstemplate_builder.cc', | 521 'common/jstemplate_builder.cc', |
520 'common/jstemplate_builder.h', | 522 'common/jstemplate_builder.h', |
(...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
765 'plugin/plugin_thread.h', | 767 'plugin/plugin_thread.h', |
766 'plugin/webplugin_delegate_stub.cc', | 768 'plugin/webplugin_delegate_stub.cc', |
767 'plugin/webplugin_delegate_stub.h', | 769 'plugin/webplugin_delegate_stub.h', |
768 'plugin/webplugin_proxy.cc', | 770 'plugin/webplugin_proxy.cc', |
769 'plugin/webplugin_proxy.h', | 771 'plugin/webplugin_proxy.h', |
770 ], | 772 ], |
771 # These are layered in conditionals in the event other platforms | 773 # These are layered in conditionals in the event other platforms |
772 # end up using this module as well. | 774 # end up using this module as well. |
773 'conditions': [ | 775 'conditions': [ |
774 ['OS=="win"', { | 776 ['OS=="win"', { |
| 777 'dependencies': [ |
| 778 '../gpu/gpu.gyp:command_buffer_service', |
| 779 ], |
775 'defines': [ | 780 'defines': [ |
776 '__STD_C', | 781 '__STD_C', |
777 '_CRT_SECURE_NO_DEPRECATE', | 782 '_CRT_SECURE_NO_DEPRECATE', |
778 '_SCL_SECURE_NO_DEPRECATE', | 783 '_SCL_SECURE_NO_DEPRECATE', |
779 ], | 784 ], |
780 'include_dirs': [ | 785 'include_dirs': [ |
781 'third_party/wtl/include', | 786 'third_party/wtl/include', |
782 ], | 787 ], |
783 },], | |
784 ['enable_gpu==1', { | |
785 'sources': [ | 788 'sources': [ |
786 'plugin/command_buffer_stub.cc', | 789 'plugin/command_buffer_stub.cc', |
787 'plugin/command_buffer_stub.h', | 790 'plugin/command_buffer_stub.h', |
788 ], | 791 ], |
789 },], | 792 },], |
790 ], | 793 ], |
791 }, | 794 }, |
792 { | 795 { |
793 'target_name': 'nacl', | 796 'target_name': 'nacl', |
794 'type': '<(library)', | 797 'type': '<(library)', |
(...skipping 1930 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2725 }], # targets | 2728 }], # targets |
2726 }], # OS=="linux" or OS=="freebsd" | 2729 }], # OS=="linux" or OS=="freebsd" |
2727 ], # 'conditions' | 2730 ], # 'conditions' |
2728 } | 2731 } |
2729 | 2732 |
2730 # Local Variables: | 2733 # Local Variables: |
2731 # tab-width:2 | 2734 # tab-width:2 |
2732 # indent-tabs-mode:nil | 2735 # indent-tabs-mode:nil |
2733 # End: | 2736 # End: |
2734 # vim: set expandtab tabstop=2 shiftwidth=2: | 2737 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |