| 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 475 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 486 'common/child_thread.cc', | 486 'common/child_thread.cc', |
| 487 'common/child_thread.h', | 487 'common/child_thread.h', |
| 488 'common/chrome_counters.cc', | 488 'common/chrome_counters.cc', |
| 489 'common/chrome_counters.h', | 489 'common/chrome_counters.h', |
| 490 'common/chrome_descriptors.h', | 490 'common/chrome_descriptors.h', |
| 491 'common/chrome_plugin_api.h', | 491 'common/chrome_plugin_api.h', |
| 492 'common/chrome_plugin_lib.cc', | 492 'common/chrome_plugin_lib.cc', |
| 493 'common/chrome_plugin_lib.h', | 493 'common/chrome_plugin_lib.h', |
| 494 'common/chrome_plugin_util.cc', | 494 'common/chrome_plugin_util.cc', |
| 495 'common/chrome_plugin_util.h', | 495 'common/chrome_plugin_util.h', |
| 496 'common/command_buffer_messages.h', |
| 497 'common/command_buffer_messages_internal.h', |
| 496 'common/common_glue.cc', | 498 'common/common_glue.cc', |
| 497 'common/common_param_traits.cc', | 499 'common/common_param_traits.cc', |
| 498 'common/common_param_traits.h', | 500 'common/common_param_traits.h', |
| 499 'common/css_colors.h', | 501 'common/css_colors.h', |
| 500 'common/db_message_filter.cc', | 502 'common/db_message_filter.cc', |
| 501 'common/db_message_filter.h', | 503 'common/db_message_filter.h', |
| 502 'common/debug_flags.cc', | 504 'common/debug_flags.cc', |
| 503 'common/debug_flags.h', | 505 'common/debug_flags.h', |
| 504 'common/devtools_messages.h', | 506 'common/devtools_messages.h', |
| 505 'common/devtools_messages_internal.h', | 507 'common/devtools_messages_internal.h', |
| (...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 764 ['OS=="win"', { | 766 ['OS=="win"', { |
| 765 'defines': [ | 767 'defines': [ |
| 766 '__STD_C', | 768 '__STD_C', |
| 767 '_CRT_SECURE_NO_DEPRECATE', | 769 '_CRT_SECURE_NO_DEPRECATE', |
| 768 '_SCL_SECURE_NO_DEPRECATE', | 770 '_SCL_SECURE_NO_DEPRECATE', |
| 769 ], | 771 ], |
| 770 'include_dirs': [ | 772 'include_dirs': [ |
| 771 'third_party/wtl/include', | 773 'third_party/wtl/include', |
| 772 ], | 774 ], |
| 773 },], | 775 },], |
| 776 ['enable_gpu==1', { |
| 777 'sources': [ |
| 778 'plugin/command_buffer_stub.cc', |
| 779 'plugin/command_buffer_stub.h', |
| 780 ], |
| 781 },], |
| 774 ], | 782 ], |
| 775 }, | 783 }, |
| 776 { | 784 { |
| 777 'target_name': 'nacl', | 785 'target_name': 'nacl', |
| 778 'type': '<(library)', | 786 'type': '<(library)', |
| 779 'msvs_guid': '83E86DAF-5763-4711-AD34-5FDAE395560C', | 787 'msvs_guid': '83E86DAF-5763-4711-AD34-5FDAE395560C', |
| 780 'dependencies': [ | 788 'dependencies': [ |
| 781 'common', | 789 'common', |
| 782 'chrome_resources', | 790 'chrome_resources', |
| 783 'chrome_strings', | 791 'chrome_strings', |
| (...skipping 1904 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2688 ]}, # 'targets' | 2696 ]}, # 'targets' |
| 2689 ], # OS=="win" | 2697 ], # OS=="win" |
| 2690 ], # 'conditions' | 2698 ], # 'conditions' |
| 2691 } | 2699 } |
| 2692 | 2700 |
| 2693 # Local Variables: | 2701 # Local Variables: |
| 2694 # tab-width:2 | 2702 # tab-width:2 |
| 2695 # indent-tabs-mode:nil | 2703 # indent-tabs-mode:nil |
| 2696 # End: | 2704 # End: |
| 2697 # vim: set expandtab tabstop=2 shiftwidth=2: | 2705 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |